├── onouo ├── 3d │ ├── README │ ├── onouo_3d.blend │ ├── onouo_std.svg.png │ ├── 3d_header │ │ ├── 3d_00.png │ │ ├── 3d_05.png │ │ ├── 3d_10.png │ │ ├── 3d_15.png │ │ ├── 3d_20.png │ │ ├── 3d_25.png │ │ ├── 3d_30.png │ │ ├── 3d_35.png │ │ ├── 3d_40.png │ │ ├── 3d_45.png │ │ ├── 3d_50.png │ │ ├── 3d_55.png │ │ ├── 3d_60.png │ │ ├── 3d_65.png │ │ ├── 3d_70.png │ │ └── 3d_75.png │ ├── README.md │ └── onouo_std.svg ├── README.md └── 2d │ ├── onouo.png │ ├── onouo7.png │ ├── onouo-A2.png │ ├── onouo-A23.png │ ├── onouo-RND.png │ ├── onouo-A.svg.png │ ├── onouo-A2.svg.png │ ├── onouo-A2_1.png │ ├── onouo-A2_1_0.png │ ├── onouo-B.svg.png │ ├── onouo-B2.svg.png │ ├── onouo-merde.png │ ├── onouo-logos-2.png │ ├── onouo-recto-white.jpg │ ├── README.md │ ├── onouo-B.svg │ ├── onouo-B2.svg │ ├── onouo-A.svg │ └── onouo-A2.svg ├── .gitignore ├── novacast └── README.md ├── 42am ├── 2.png ├── 4.png ├── am.png ├── 2point.png ├── 6muQRL.png ├── Kw2KJZ.png ├── YVGLCj.png ├── esM9ud.png ├── logo.svg.png ├── logo2.svg.png ├── anim │ ├── images │ │ ├── 2.png │ │ ├── 4.png │ │ ├── am.png │ │ └── 2point.png │ ├── anim.html │ ├── anim_edgeActions.js │ ├── anim.edge │ ├── edge_includes │ │ ├── json2_min.js │ │ └── jquery.easing.1.3.js │ ├── anim_edge.js │ └── anim_edgePreload.js ├── README.md ├── logo.svg ├── logo2.svg └── cards.svg ├── isw-labs ├── iswlogo.png ├── yuKmmM.png ├── logo_600.png ├── logo_better.svg.png └── README.md ├── terapixel ├── logo_white.png ├── small_text.png ├── README.md └── terapixel.svg ├── convert_SVGs_to_PNGs.sh └── generate_READMEs.sh /onouo/3d/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *! 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /onouo/README.md: -------------------------------------------------------------------------------- 1 | onouo 2 | ===== 3 | 4 | 5 | -------------------------------------------------------------------------------- /novacast/README.md: -------------------------------------------------------------------------------- 1 | novacast 2 | ======== 3 | 4 | 5 | -------------------------------------------------------------------------------- /42am/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/42am-logos/master/42am/2.png -------------------------------------------------------------------------------- /42am/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/42am-logos/master/42am/4.png -------------------------------------------------------------------------------- /42am/am.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/42am-logos/master/42am/am.png -------------------------------------------------------------------------------- /42am/2point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/42am-logos/master/42am/2point.png -------------------------------------------------------------------------------- /42am/6muQRL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/42am-logos/master/42am/6muQRL.png -------------------------------------------------------------------------------- /42am/Kw2KJZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/42am-logos/master/42am/Kw2KJZ.png -------------------------------------------------------------------------------- /42am/YVGLCj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/42am-logos/master/42am/YVGLCj.png -------------------------------------------------------------------------------- /42am/esM9ud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/42am-logos/master/42am/esM9ud.png -------------------------------------------------------------------------------- /42am/logo.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/42am-logos/master/42am/logo.svg.png -------------------------------------------------------------------------------- /42am/logo2.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/42am-logos/master/42am/logo2.svg.png -------------------------------------------------------------------------------- /isw-labs/iswlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/42am-logos/master/isw-labs/iswlogo.png -------------------------------------------------------------------------------- /isw-labs/yuKmmM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/42am-logos/master/isw-labs/yuKmmM.png -------------------------------------------------------------------------------- /onouo/2d/onouo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/42am-logos/master/onouo/2d/onouo.png -------------------------------------------------------------------------------- /onouo/2d/onouo7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/42am-logos/master/onouo/2d/onouo7.png -------------------------------------------------------------------------------- /42am/anim/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/42am-logos/master/42am/anim/images/2.png -------------------------------------------------------------------------------- /42am/anim/images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/42am-logos/master/42am/anim/images/4.png -------------------------------------------------------------------------------- /isw-labs/logo_600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/42am-logos/master/isw-labs/logo_600.png -------------------------------------------------------------------------------- /onouo/2d/onouo-A2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/42am-logos/master/onouo/2d/onouo-A2.png -------------------------------------------------------------------------------- /onouo/2d/onouo-A23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/42am-logos/master/onouo/2d/onouo-A23.png -------------------------------------------------------------------------------- /onouo/2d/onouo-RND.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/42am-logos/master/onouo/2d/onouo-RND.png -------------------------------------------------------------------------------- /42am/anim/images/am.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/42am-logos/master/42am/anim/images/am.png -------------------------------------------------------------------------------- /onouo/2d/onouo-A.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/42am-logos/master/onouo/2d/onouo-A.svg.png -------------------------------------------------------------------------------- /onouo/2d/onouo-A2.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/42am-logos/master/onouo/2d/onouo-A2.svg.png -------------------------------------------------------------------------------- /onouo/2d/onouo-A2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/42am-logos/master/onouo/2d/onouo-A2_1.png -------------------------------------------------------------------------------- /onouo/2d/onouo-A2_1_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/42am-logos/master/onouo/2d/onouo-A2_1_0.png -------------------------------------------------------------------------------- /onouo/2d/onouo-B.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/42am-logos/master/onouo/2d/onouo-B.svg.png -------------------------------------------------------------------------------- /onouo/2d/onouo-B2.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/42am-logos/master/onouo/2d/onouo-B2.svg.png -------------------------------------------------------------------------------- /onouo/2d/onouo-merde.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/42am-logos/master/onouo/2d/onouo-merde.png -------------------------------------------------------------------------------- /onouo/3d/onouo_3d.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/42am-logos/master/onouo/3d/onouo_3d.blend -------------------------------------------------------------------------------- /terapixel/logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/42am-logos/master/terapixel/logo_white.png -------------------------------------------------------------------------------- /terapixel/small_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/42am-logos/master/terapixel/small_text.png -------------------------------------------------------------------------------- /42am/anim/images/2point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/42am-logos/master/42am/anim/images/2point.png -------------------------------------------------------------------------------- /onouo/2d/onouo-logos-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/42am-logos/master/onouo/2d/onouo-logos-2.png -------------------------------------------------------------------------------- /onouo/3d/onouo_std.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/42am-logos/master/onouo/3d/onouo_std.svg.png -------------------------------------------------------------------------------- /isw-labs/logo_better.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/42am-logos/master/isw-labs/logo_better.svg.png -------------------------------------------------------------------------------- /onouo/2d/onouo-recto-white.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/42am-logos/master/onouo/2d/onouo-recto-white.jpg -------------------------------------------------------------------------------- /onouo/3d/3d_header/3d_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/42am-logos/master/onouo/3d/3d_header/3d_00.png -------------------------------------------------------------------------------- /onouo/3d/3d_header/3d_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/42am-logos/master/onouo/3d/3d_header/3d_05.png -------------------------------------------------------------------------------- /onouo/3d/3d_header/3d_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/42am-logos/master/onouo/3d/3d_header/3d_10.png -------------------------------------------------------------------------------- /onouo/3d/3d_header/3d_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/42am-logos/master/onouo/3d/3d_header/3d_15.png -------------------------------------------------------------------------------- /onouo/3d/3d_header/3d_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/42am-logos/master/onouo/3d/3d_header/3d_20.png -------------------------------------------------------------------------------- /onouo/3d/3d_header/3d_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/42am-logos/master/onouo/3d/3d_header/3d_25.png -------------------------------------------------------------------------------- /onouo/3d/3d_header/3d_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/42am-logos/master/onouo/3d/3d_header/3d_30.png -------------------------------------------------------------------------------- /onouo/3d/3d_header/3d_35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/42am-logos/master/onouo/3d/3d_header/3d_35.png -------------------------------------------------------------------------------- /onouo/3d/3d_header/3d_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/42am-logos/master/onouo/3d/3d_header/3d_40.png -------------------------------------------------------------------------------- /onouo/3d/3d_header/3d_45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/42am-logos/master/onouo/3d/3d_header/3d_45.png -------------------------------------------------------------------------------- /onouo/3d/3d_header/3d_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/42am-logos/master/onouo/3d/3d_header/3d_50.png -------------------------------------------------------------------------------- /onouo/3d/3d_header/3d_55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/42am-logos/master/onouo/3d/3d_header/3d_55.png -------------------------------------------------------------------------------- /onouo/3d/3d_header/3d_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/42am-logos/master/onouo/3d/3d_header/3d_60.png -------------------------------------------------------------------------------- /onouo/3d/3d_header/3d_65.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/42am-logos/master/onouo/3d/3d_header/3d_65.png -------------------------------------------------------------------------------- /onouo/3d/3d_header/3d_70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/42am-logos/master/onouo/3d/3d_header/3d_70.png -------------------------------------------------------------------------------- /onouo/3d/3d_header/3d_75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moul/42am-logos/master/onouo/3d/3d_header/3d_75.png -------------------------------------------------------------------------------- /onouo/3d/README.md: -------------------------------------------------------------------------------- 1 | onouo/3d 2 | ======== 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /terapixel/README.md: -------------------------------------------------------------------------------- 1 | terapixel 2 | ========= 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /convert_SVGs_to_PNGs.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | for image in $(find . -type f -name "*.svg"); do 4 | echo $image 5 | dest=$image.png 6 | convert $image $dest 2>/dev/null 7 | #qlmanage -t -s 1000 -o $(dirname $dest) $image 8 | done 9 | -------------------------------------------------------------------------------- /42am/anim/anim.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Untitled 6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 |
14 | 15 | -------------------------------------------------------------------------------- /isw-labs/README.md: -------------------------------------------------------------------------------- 1 | isw-labs 2 | ======== 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /42am/anim/anim_edgeActions.js: -------------------------------------------------------------------------------- 1 | /*********************** 2 | * Adobe Edge Composition Actions 3 | * 4 | * Edit this file with caution, being careful to preserve 5 | * function signatures and comments starting with 'Edge' to maintain the 6 | * ability to interact with these actions from within Adobe Edge 7 | * 8 | ***********************/ 9 | (function($, Edge, compId){ 10 | var Composition = Edge.Composition, Symbol = Edge.Symbol; // aliases for commonly used Edge classes 11 | 12 | //Edge symbol: 'stage' 13 | (function(symbolName) { 14 | 15 | 16 | 17 | })("stage"); 18 | //Edge symbol end:'stage' 19 | 20 | })(jQuery, AdobeEdge, "EDGE-19145461"); -------------------------------------------------------------------------------- /42am/README.md: -------------------------------------------------------------------------------- 1 | 42am 2 | ==== 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /generate_READMEs.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | ACCOUNT=42am 4 | REPO=logos 5 | 6 | pwd=$(pwd) 7 | for dir in * */*; do 8 | if [ -d $pwd/$dir ]; then 9 | cd $pwd/$dir 10 | ( 11 | echo "$dir" 12 | echo "$dir" | sed "s/./=/g" 13 | echo 14 | for image in *.png; do 15 | if [ -f $image ]; then 16 | echo "" 17 | fi 18 | done 19 | #for image in *.svg; do 20 | # if [ -f $image ]; then 21 | # echo "" 22 | # fi 23 | #done 24 | echo 25 | ) > $pwd/$dir/README.md 26 | fi 27 | done -------------------------------------------------------------------------------- /42am/anim/anim.edge: -------------------------------------------------------------------------------- 1 | { 2 | 3 | "HTMLFileName":"anim.html", 4 | "pref__general__AutoKeyframeProperties":"false", 5 | "TransitionIdCounter":"58", 6 | "ModelData":"{\ 7 | \"stage\": {\ 8 | \"timelines\": {\ 9 | \"Default Timeline\": {\ 10 | \"ElementKeyframes\": {\ 11 | \"${_am}\": [], \ 12 | \"${__2point}\": [], \ 13 | \"${__2}\": [], \ 14 | \"${__4}\": []\ 15 | }\ 16 | }\ 17 | }},\ 18 | \"preloader\": {\ 19 | \"timelines\": {\ 20 | \ 21 | }},\ 22 | \"Poster\": {\ 23 | \"timelines\": {\ 24 | \ 25 | }}\ 26 | }", 27 | "viewStartY":"0", 28 | "pixelsPerMs":"0.18087641500176", 29 | "usedBOM":"false", 30 | "stage-Default Timeline_mark_ms":"-1", 31 | "stage-Default Timeline_playhead_anchor_ms":"0", 32 | "stage-Default Timeline_playhead_ms":"3000", 33 | "pref__general__GenerateSmoothTransitions":"true", 34 | "symbol_stage":{ 35 | "element_${_am}":{ 36 | "animationEnabled":"true", 37 | "timelineColor":"0xeedf79"}, 38 | "element_${__2point}":{ 39 | "animationEnabled":"true", 40 | "timelineColor":"0x91c767"}, 41 | "element_${__2}":{ 42 | "animationEnabled":"true", 43 | "timelineColor":"0x50bd82"}, 44 | "element_${__4}":{ 45 | "animationEnabled":"true", 46 | "timelineColor":"0x00bda4"}}, 47 | "viewStartMs":"0"} -------------------------------------------------------------------------------- /onouo/2d/README.md: -------------------------------------------------------------------------------- 1 | onouo/2d 2 | ======== 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /42am/anim/edge_includes/json2_min.js: -------------------------------------------------------------------------------- 1 | if(!this.JSON)this.JSON={}; 2 | (function(){function k(a){return a<10?"0"+a:a}function o(a){p.lastIndex=0;return p.test(a)?'"'+a.replace(p,function(a){var c=r[a];return typeof c==="string"?c:"\\u"+("0000"+a.charCodeAt(0).toString(16)).slice(-4)})+'"':'"'+a+'"'}function l(a,i){var c,d,h,m,g=e,f,b=i[a];b&&typeof b==="object"&&typeof b.toJSON==="function"&&(b=b.toJSON(a));typeof j==="function"&&(b=j.call(i,a,b));switch(typeof b){case "string":return o(b);case "number":return isFinite(b)?String(b):"null";case "boolean":case "null":return String(b); 3 | case "object":if(!b)return"null";e+=n;f=[];if(Object.prototype.toString.apply(b)==="[object Array]"){m=b.length;for(c=0;c0&&(b="rgb("+b.substring(5,f)+")")}return b} 26 | function edgeCallback(b){htFallbacks[b]&&(b=htFallbacks[b]);AdobeEdge.preload.got[b]=!0;if(b==AdobeEdge.preload.last)AdobeEdge.okToLaunchComposition(compId),AdobeEdge.preload.busy=!1,AdobeEdge.preload.q.length>0&&(b=AdobeEdge.preload.q.pop(),AdobeEdge.requestResources(b.files,b.callback))} 27 | AdobeEdge.requestResources=AdobeEdge.requestResources||function(b,f){AdobeEdge.yepnope.errorTimeout=4E3;AdobeEdge.preload.busy=!0;AdobeEdge.preload.got=AdobeEdge.preload.got||{};var d,a=b.length,e=[],c;for(d=0;d1&&(j+=a.transform[0][1]));g.left=c+"px";g.top=j+"px";g.width=a.rect[2]+"px";g.height=a.rect[3]+"px";if(a.linkURL)htLookup[e.id]=a,e.onclick=function(){var a=htLookup[this.id];a.linkTarget?window.open(a.linkURL,a.linkTarget):window.location.href=a.linkURL},g.cursor="pointer";if(a.c)for(h=0;h 2 | 3 | 4 | 18 | 20 | 38 | 40 | 41 | 43 | image/svg+xml 44 | 46 | 47 | 48 | 49 | 50 | 54 | 64 | 74 | 42. 88 | am 102 | 115 | 4 129 | 140 | . 155 | am 169 | 2 183 | 184 | 185 | -------------------------------------------------------------------------------- /terapixel/terapixel.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 18 | 20 | 38 | 40 | 41 | 43 | image/svg+xml 44 | 46 | 47 | 48 | 49 | 50 | 54 | 57 | TER API XEL 68 | 71 | 77 | 83 | 89 | 90 | 91 | vos besoins en panoramas 111 | 115 | TER API XEL 126 | 130 | 136 | 142 | 148 | 149 | 150 | vos besoins en panoramas 164 | 165 | -------------------------------------------------------------------------------- /onouo/2d/onouo-B.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 18 | 20 | 27 | 34 | 35 | 53 | 55 | 56 | 58 | image/svg+xml 59 | 61 | 62 | 63 | 64 | 65 | 69 | 77 | 84 | 88 | 94 | 95 | 99 | 100 | 107 | 112 | 118 | 119 | 127 | 128 | 129 | -------------------------------------------------------------------------------- /onouo/2d/onouo-B2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 18 | 20 | 27 | 34 | 35 | 53 | 55 | 56 | 58 | image/svg+xml 59 | 61 | 62 | 63 | 64 | 65 | 69 | 77 | 84 | 88 | 94 | 95 | 99 | 100 | 107 | 112 | 118 | 119 | 127 | 128 | 129 | -------------------------------------------------------------------------------- /onouo/2d/onouo-A.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 18 | 20 | 27 | 34 | 35 | 53 | 55 | 56 | 58 | image/svg+xml 59 | 61 | 62 | 63 | 64 | 65 | 69 | 77 | 85 | 90 | 94 | 101 | 106 | 112 | 113 | 121 | 122 | 123 | -------------------------------------------------------------------------------- /onouo/2d/onouo-A2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 17 | 19 | 21 | 22 | 24 | image/svg+xml 25 | 26 | 27 | 28 | 29 | 30 | 33 | 35 | 41 | 47 | 64 | 66 | 79 | 89 | 90 | 103 | 104 | 105 | 106 | -------------------------------------------------------------------------------- /onouo/3d/onouo_std.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 18 | 20 | 27 | 34 | 41 | 48 | 49 | 67 | 69 | 70 | 72 | image/svg+xml 73 | 75 | 76 | 77 | 78 | 79 | 83 | 87 | 94 | 98 | 102 | 103 | 110 | 116 | 123 | 124 | 133 | 140 | 144 | 148 | 149 | 150 | 151 | -------------------------------------------------------------------------------- /42am/logo2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 19 | 21 | 24 | 28 | 32 | 33 | 44 | 55 | 56 | 74 | 76 | 77 | 79 | image/svg+xml 80 | 82 | 83 | 84 | 85 | 86 | 90 | 93 | 42: 104 | am 116 | 128 | 129 | 132 | 135 | 139 | 143 | 148 | 149 | 153 | 157 | 161 | 162 | 163 | 166 | 170 | 174 | 178 | 183 | 184 | 188 | 192 | 196 | 197 | 201 | 205 | 209 | 210 | 214 | 217 | 220 | 224 | 228 | 233 | 237 | 241 | 242 | 243 | 245 | 250 | 255 | 261 | 264 | 269 | 274 | 275 | 276 | 278 | 283 | 288 | 294 | 299 | 304 | 305 | 307 | 310 | 318 | 321 | 328 | SUcEZ toUsMa bIt3 .am 343 | 344 | 345 | 346 | 349 | 353 | 357 | 361 | 366 | 367 | 373 | 377 | 381 | 382 | 383 | 386 | 392 | 396 | 400 | 401 | 402 | 409 | 417 | 425 | 434 | 441 | 443 | 450 | 454 | 455 | 456 | 467 | 468 | 469 | -------------------------------------------------------------------------------- /42am/cards.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 18 | 20 | 38 | 40 | 41 | 43 | image/svg+xml 44 | 46 | 47 | 48 | 49 | 50 | 54 | 61 | 68 | 71 | 75 | 79 | 83 | 84 | 87 | 93 | 97 | 101 | 102 | 103 | 110 | 111 | Manfred Touron 122 | m@42.am 133 | 140 | 143 | 147 | 151 | 155 | 156 | 159 | 165 | 169 | 173 | 174 | 175 | 182 | 183 | Manfred Touron 194 | M@ 205 | 212 | 215 | 219 | 223 | 227 | 228 | 231 | 237 | 241 | 245 | 246 | 247 | 254 | 255 | Manfred Toucarré 266 | M@ 277 | stuffmaster 288 | 295 | 299 | 303 | 308 | 313 | 314 | 318 | 324 | 328 | 333 | 334 | 335 | 342 | 343 | M@ 354 | Manfred Toucarré 365 | 372 | 376 | 380 | 385 | 390 | 391 | 395 | 401 | 405 | 410 | 411 | 412 | 419 | 420 | 427 | M@ 440 | Manfred Toucarré 451 | 458 | 462 | 466 | 471 | 476 | 477 | 481 | 487 | 491 | 496 | 497 | 498 | 505 | 506 | M@ 520 | Manfred Touriste 531 | 538 | 541 | 545 | 549 | 553 | 554 | 557 | 563 | 567 | 571 | 572 | 573 | 580 | 581 | Manfred Toupile 592 | m@ 603 | stuffmaster 614 | 618 | 622 | 627 | 632 | 633 | 637 | 643 | 647 | 652 | 653 | 654 | 661 | 662 | 669 | 672 | 676 | 680 | 684 | 685 | 688 | 694 | 698 | 702 | 703 | 704 | 711 | 712 | Manfred Toupile 723 | m@ 734 | stuffmaster 745 | 752 | Manfred Toupile 763 | 767 | 771 | 776 | 781 | 782 | 786 | 792 | 796 | 801 | 802 | 803 | 810 | 811 | 818 | m@42.am 829 | 836 | Manfred Touron 847 | 850 | 854 | 858 | 862 | 863 | 866 | 872 | 876 | 880 | 881 | 882 | 889 | 890 | m@42.am 902 | 903 | 904 | --------------------------------------------------------------------------------