建立ASCII平台


26

在体育比赛中,经常会出现获奖者出现在领奖台上的情况,第一名的人排在中间最高,第二名的人排在中间高度的左侧,第三名的人排在最低和在右边。我们将在此处进行一些特殊的调整来重新创建它。

领奖台如下:

     @---@
     | @ |
@---@| | |
| @ || | |
| | || | |@---@
| | || | || @ |

这将构成这一挑战的基础。下一步是使讲台足够宽,以适合讲台上的人员(可打印ASCII字符串)。但是,我们要确保美观(因为这是一次绝佳的拍照机会),因此每个讲台的宽度必须相同,并且宽度必须为奇数。此外,人们(显然)会希望站在讲台的中央,因此,弦线必须尽可能地居中。(您可以向左或向右对齐,并且不需要保持一致。)上面的讲台是最小的尺寸,被认为是3宽的。

例如,假设输入分别["Tom", "Ann", "Sue"]代表第一,第二和第三名,则输出以下讲台:

      Tom
     @---@
 Ann | @ |
@---@| | |
| @ || | | Sue
| | || | |@---@
| | || | || @ |

然而,如果我们Anne不是Ann,我们需要去到下一个大小,5和中央琴弦尽可能最佳。在这里,我正在对齐,因此“额外”字母Anne位于中心的左侧,但是您可以选择要对齐到哪一侧。

         Tom
       @-----@
 Anne  |  @  |
@-----@|  |  |
|  @  ||  |  |  Sue
|  |  ||  |  |@-----@
|  |  ||  |  ||  @  |

让我们来命名一些更长的名称。怎么样["William", "Brad", "Eugene"]

          William
         @-------@
  Brad   |   @   |
@-------@|   |   |
|   @   ||   |   | Eugene
|   |   ||   |   |@-------@
|   |   ||   |   ||   @   |

在这里,我们可以看到Brad有很多空格,Eugene少了一些,并且William恰到好处。

对于更长的测试用例,如何["A", "BC", "DEFGHIJKLMNOPQRSTUVWXYZ"]

                                     A
                         @-----------------------@
           BC            |           @           |
@-----------------------@|           |           |
|           @           ||           |           | DEFGHIJKLMNOPQRSTUVWXYZ
|           |           ||           |           |@-----------------------@
|           |           ||           |           ||           @           |

最后,我们有尽可能小的输入,例如["A", "B", "C"]

       A
     @---@
  B  | @ |
@---@| | |
| @ || | |  C
| | || | |@---@
| | || | || @ |

  • 输入和输出可以通过任何方便的方法给出。
  • 输入被保证为非空的(即,您将永远不会收到""它的名字)。
  • 您可以将其打印到STDOUT或将其作为功能结果返回。
  • 完整的程序或功能都是可以接受的。
  • 只要字符正确排列,任何数量的外部空格都是可以接受的。
  • 禁止出现标准漏洞
  • 这是因此所有常见的高​​尔夫规则都适用,并且最短的代码(以字节为单位)获胜。

所有偶数长度的名称都必须沿同一方向对齐吗?
Sparr

1
为什么最后一个示例输出中的讲台长度为3,而不是长度1?
bruderjakob17

3
@bruderjakob,他在开头说:“以上领奖台是最小的尺寸,被认为是3宽”
rtpax

Answers:


9

JavaScript(ES8),196字节

a=>`141
101
521
031
236
330
332`.replace(/./g,n=>[...`@-@   |@||||`.substr(n*3,3)].join(' -'[+!+n].repeat(m/2))||a[n-=4].padStart(m+l[n]+3>>1).padEnd(m+3),m=Math.max(2,...l=a.map(s=>s.length))&~1)

在线尝试!


7

Groovy的187176156,150个字节

f={n->m=n*.size().max()|1;h=' '*(m/2);'30734715746756276647665'*.toLong().sum{(n*.center(m+2)+[' '*(m+2),"@${'-'*m}@","|$h@$h|","|$h|$h|",'\n'])[it]}}

在线尝试!

(注意:即使groovy 2.5.6可以,tio groovy解释器也无法使用Long值处理索引列表。因此,使用了tio答案,*.toShort()而不是*.toLong()添加了一个字节)

定义一个f可以通过以下方式调用的闭包:

println(f(['tom','ann','sue']))

其中f返回一个字符串。

说明:

不混淆代码,我们有:

f={n->
  m=n*.size().max()|1
  h=' '*(m/2)
  a=n*.center(m+2)+[' '*(m+2),"@${'-'*m}@","|$h@$h|","|$h|$h|",'\n']
  '30734715746756276647665'*.toLong().sum{a[it]}
}
  • f={n-> -用一个参数定义闭包f n
  • m=n*.size().max()|1 -查找最大名称len,二进制或奇数
  • h=' '*(m/2) -h将包含楼板空间(m / 2),稍后使用
  • a=...-创建带有元素的编码列表:
    • 索引0,1,2-名称,以max len为中心
    • 索引3-m + 2空间
    • 索引4- @---@模式,填充到len
    • 索引5- | @ |模式,填充到len
    • 索引6- | | |模式,填充到len
    • 索引7-换行符
  • '307...'*.toLong().sum{a[it]}-在编码列表中使用索引以生成结果。.sum使用groovy中的字符串+字符串有效的事实。
  • 请注意,该表达式'3073...'*.toLong()使用*.传播运算符来调用toLong()每个字符,并返回数字列表。
  • 注意答案中的变量a已被内联,内联被删除等。

6

画布,45 字节

r351⁰{|*@;∔;J└l2M2%±├ ××l⇵╷-×└+-α∔k+│∔⇵;}┐++⇵

在这里尝试!

说明:

r    Center the input, preferring left. Converts to an ASCII-art object
     which pads everything with spaces. This is the bulk of the magic.

 251⁰{ .... }            for each number in [2, 5, 1]:
      |*                 repeat "|" vertically that many times
        @;∔              prepend an "@" - a vertical bar for later
           ;             swap top 2 stack items - put the centered art on top
            J            push the 1st line of it (removing it from the art)
             └           order the stack to [remaining, "@¶|¶|..", currentLine]
              l          get the length of the current line
               2M        max of that and 2
                 2%      that % 2
                   ±├    (-that) + 2
                      ×× prepend (-max(len,2)%2) + 2 spaces
l                 get the length of the new string
 ⇵╷               ceil(len / 2) -1
   -×             repeat "-" that many times - half of the podiums top
     └            order stack to [art, currLine, "@¶|¶|..", "----"]
      +           append the dashes to the vertical bar = "@-----¶|¶|.."
       -α∔        vertically add "-" and the original vertical bar - "-¶@¶|¶|.."
          k       remove the last line of that to make up for the middles shortness
           +      and append that horizontally - half of the podium without the name
            │     palindromize the podium
             ∔    and prepend the name
              ⇵   reverse vertically so the outputs could be aligned to the bottom
               ;  and get the rest of the centered input on top
Finally, 
┐     remove the useless now-empty input
 ++   join the 3 podium parts together
   ⇵  and undo the reversing

滥用“而且不需要保持一致”,这使其难以理解。


嗯...有解释的机会吗?
Matias Bjarland

1
@MatiasBjarland虽然主要是堆栈操作,其余的我几乎不了解。
dzaima

4

Python 2中197个 190字节

n=input()
w=max([3]+map(len,n))
w+=~w%2;W=w+2
S=('{:^%d}'%w).format
x,y,s='@| '
a,b,c=map(S,n);A,B,C=x+'-'*w+x,y+S(x)+y,y+S(y)+y
for l in-~W*s+a,s*W+A,s+b+s+B,A+C,B+C+s+c,C+C+A,C+C+B:print l

在线尝试!

-6个字节,感谢Andrew Dunai


通过将第5行替换为x,y,p='@| '并使用p代替,可以节省6个字节' '
Andrew Dunai

1
@andrewdunai谢谢:)
TF场

4

Python 2,157字节

a=input()
i=7
while i:print''.join(([a[k/2]]+list('-@||||    '))[7-i-k].center(max(map(len,a))|1,'- '[i+k!=6]).join('@ |'[cmp(i+k,6)]*2)for k in(2,0,4));i-=1

在线尝试!


3

木炭,63字节

≔÷⌈EθLι²ηF³«J×ι⁺³⊗η⊗﹪⁻¹ι³⟦◧§θι⁺⊕η⊘⊕L§θι⟧≔⁻⁷ⅉιP↓ι@ηP↓ιP↓@@¹ηP↓ι@

在线尝试!链接是详细版本的代码。说明:

≔÷⌈EθLι²η

计算讲台各半部分的空间数量。

F³«

遍历每个地方。请注意,输入的顺序应为2nd,1st,3rd。

J×ι⁺³⊗η⊗﹪⁻¹ι³

定位到将要显示文本的行的开头。

⟦◧§θι⁺⊕η⊘⊕L§θι⟧

输出带有足够左填充的文本以居中。

≔⁻⁷ⅉι

获取领奖台的高度。

P↓ι@ηP↓ιP↓@@¹ηP↓ι@

绘制领奖台。

另一种方法,也是63个字节:

≔÷⌈EθLι²ηF³«J×ι⁺³⊗η⊗﹪⁻¹ι³⟦◧§θι⁺⊕η⊘⊕L§θι⪫@-@×-η⟧E⁻⁷ⅉ⪫⪫||§|@¬κ× η

在线尝试!链接是详细版本的代码。说明:

≔÷⌈EθLι²η

计算讲台各半部分的空间数量。

F³«

遍历每个地方。请注意,输入的顺序应为2nd,1st,3rd。

J×ι⁺³⊗η⊗﹪⁻¹ι³

定位到将要显示文本的行的开头。

⟦◧§θι⁺⊕η⊘⊕L§θι

输出带有足够左填充的文本以居中。

⪫@-@×-η⟧

通过-在字符串的字符之间插入s @-@以达到正确的宽度,也可以输出讲台的顶部。

E⁻⁷ⅉ⪫⪫||§|@¬κ× η

通过|适当地隔开s来打印讲台的其余部分,除了中间字符@在第一行是a之外。


3

[R 308 302 299

感谢@JAD -6个字节感谢@Guiseppe
-3个字节,现在我不到300

function(a){i=max(1,nchar(a)%/%2)
e=2*i+1
`~`=rep
g=' '
s=g~e+2
b='@'
p='|'
t=c(b,'-'~e,b)
x=c(p,g~i,b,g~i,p)
h=sub(b,p,x)
a=lapply(a,function(q){r=nchar(q);l=(e-r)/2+1;if(r%%2<1)c(g~l,q,g~l+1)else c(g~l,q,g~l)})
cat(s,a[[1]],s,s,t,s,a[[2]],x,s,t,h,s,x,h,a[[3]],h,h,t,h,h,x,fill=length(t)*3,sep='')}

创建布局可能是更好的方法。我应该尝试一下数据帧有哪些选项。

在线尝试



2
感谢您在R中进行可变的ascii-art挑战...从来没有乐趣可做。您可以使用保存3个字节i=max(1,nchar(a)%/%2)。生成matrix和使用write可能会更短(而不是data.frame)。我建议使用formatwith j="c"来自动调整事物,strrep在这种情况下也是有用的。也许尝试在golfR聊天室反弹创意?
朱塞佩

是的,我没有意识到要付出多大的努力。我学到了一些东西,主要是我应该更好地学习Python,或者开始学习Perl :)。我忘记了strrep; 我必须调查一下。
CT厅

2

干净,209字节

import StdEnv,Data.List
k=[' @|||||']
$l#m=max(maxList(map length l))3/2*2+1
=flatlines(transpose[(spaces(n*2)++g)%(0,6)\\n<-[1,0,2],g<-[k:[[c,'-':tl if(i==m/2)k['  '..]]\\c<-cjustify m(l!!n)&i<-[0..]]]++[k]])

在线尝试!


2

Python 2,188字节

a,b,c=l=input()
s=max(map(len,l))/2or 1
A='@'+'--'*s+'-@'
D=(' '*s).join
C=D('|@|')
D=D('|||')
d=str.center
S=s*2+3
for l in' '*S+d(a,S),' '*S+A,d(b,S)+C,A+D,C+D+d(c,S),D+D+A,D+D+C:print l

在线尝试!

-5感谢TFeld


2

PHP,147字节

我最初的想法打了93个字节,直截了当<?=

for(;~$v=_616606256046543440445[++$i];)echo$b="@   || "[$v],str_pad(($v&4?"|@":$argv)[$v&3],max(array_map(strlen,$argv))," -"[!$v],2),$b,"
"[$i%3];

从命令行参数获取名称。运行-nr在线尝试
需要PHP 7;在PHP 7.2中产生警告(可能以后)。有关+5字节修复的信息,请参见TiO。

映射:

0:@---@     = top border
1,2,3       = $argv with spaces
4: "| | |"  = default
5: "| @ |"  = below top
6: "     "  = empty

分解:

for(;~$v=_616606256046543440445[++$i];)echo # loop through map:
    $b="@   || "[$v],                       # print left border
    str_pad(                                # print padded string:
        ($v&4?"|@":$argv)[$v&3],                # string to be padded
        max(array_map(strlen,$argv)),           # pad length = max argument length
        " -"[!$v],                              # pad with: dashes if top border, spaces else
        2                                       # option: center text (pad on both sides)
    ),
    $b,                                     # print right border
    "\n"[$i%3]                              # add linebreak every three items
;

预先增加$i可以使我免于换行的任何麻烦。
的空白6也可以为空;所以我做到了
但是使用$argv[0]顶部边框字符串-是有史以来最棒的高尔夫。(并节省了9个字节!)


2

Go,436个​​字节

去高尔夫很糟糕。但:

package main;import ("fmt";"os");func main(){;z:=os.Args;f:=3;for i:=1;i<4;i++{;if len(z[i])>f{;f=len(z[i]);};};f+=1-f%2;p:=(f-1)/2+1;b:="@";for j:=0;j<f;j++{;b+="-";};b+="@";x:=fmt.Sprintf("|%*v%*v",p,"@",p,"|");y:=fmt.Sprintf("|%*v%[1]*v",p,"|");fmt.Printf("%*v%*v\n%*v%v\n%*v%*v\n%v%v\n%v%v%*v\n%v%v%v\n%v%v%v",f+2,"",p+1+len(z[1])/2,z[1],f+2,"",b,p+1+len(z[2])/2,z[2],2*f+3-p-len(z[2])/2,x,b,y,x,y,p+1+len(z[3])/2,z[3],y,y,b,y,y,x)}

细分:

package main
import (
  "fmt"
  "os"
)
func main() {
  z:=os.Args
  f:=3
  for i:=1;i<4;i++{
    if len(z[i])>f{
      f=len(z[i])
    }
  }
  f+=1-f%2
  p:=(f-1)/2+1
  b:="@"
  for j:=0;j<f;j++{
    b+="-"
  }
  b+="@"
  x:=fmt.Sprintf("|%*v%*v",p,"@",p,"|")
  y:=fmt.Sprintf("|%*v%[1]*v",p,"|")

  fmt.Printf("%*v%*v\n%*v%v\n%*v%*v\n%v%v\n%v%v%*v\n%v%v%v\n%v%v%v",
  f+2,"",p+1+len(z[1])/2,z[1],
  f+2,"",b,
  p+1+len(z[2])/2,z[2],2*f+3-p-len(z[2])/2,x,
  b,y,
  x,y,p+1+len(z[3])/2,z[3],
  y,y,b,y,y,x)
}

1

Java的8,399 394个 373字节

这个解决方案可能太长了,但这是一个解决方案:)

static String r(String[]p){String s="";int l[]=new int[]{p[0].length(),p[1].length(),p[2].length()},m=Math.max(l[0],Math.max(l[1],l[2]))+2,i,q,j,a,k,t;if(m%2==0)m++;if(m==3)m=5;for(i=0;i<7;i++){for(q=0;q<3;q++)for(j=0;j<m;j++){a=(2*q+1)%3;k=2*a;t=(m-l[a])/2;s+=i==k?j>=t&j<t+l[a]?p[a].charAt(j-t):" ":i==k+1?j%(m-1)==0?"@":"-":i>=k+2?j%(m-1)==0?"|":j==m/2?i==k+2?"@":"|":" ":" ";}s+="\n";}return s;}

通过直接顺序迭代来节省5个字节(a = 1,0,2而不是q = 0,1,2; a = f(q))

static String r(String[]p){String s="";int l[]=new int[]{p[0].length(),p[1].length(),p[2].length()},m=Math.max(l[0],Math.max(l[1],l[2]))+2,i,j,a,k,t;if(m%2==0)m++;if(m==3)m=5;for(i=0;i<7;i++){for(a=1;a<4;a=a==1?0:a+2)for(j=0;j<m;j++){k=2*a;t=(m-l[a])/2;s+=i==k?j>=t&j<t+l[a]?p[a].charAt(j-t):" ":i==k+1?j%(m-1)==0?"@":"-":i>=k+2?j%(m-1)==0?"|":j==m/2?i==k+2?"@":"|":" ":" ";}s+="\n";}return s;}

感谢@KevinCruijssen,节省了21个字节:

static String r(String[]p){String s="";int l[]=new int[3],m=0,i,j,a,k,t;for(String x:p)l[m++]=x.length();m=Math.max(l[0],Math.max(l[1],l[2]))+2;m+=m%2<1?1:m==3?2:0;for(i=0;i<7;i++,s+="\n")for(a=1;a<4;a=a==1?0:a+2)for(j=0,k=2*a,t=(m-l[a])/2;j<m;j++)s+=i==k?j>=t&j<t+l[a]?p[a].charAt(j-t):" ":i==k+1?j%~-m<1?"@":"-":i>=k+2?j%~-m<1?"|":j==m/2?i==k+2?"@":"|":" ":" ";return s;}

正如@KevinCruijssen所建议的,也可以在Java 10+中使用var代替,String并节省一些额外的字节。我之所以不这样做,原因很简单,因为我还没有Java 10:D也可以使用lambda。但这只会减少字节数,如果我们省去将其分配给Function<String[],String>变量的话。

展开形式:

static String r(String[]p){
    String s=""; //The string that will be returned
    int l[]=new int[3], //An array containing the lengths of our three names
            m=0, //tmp variable for filling l
            i,j,a,k,t; //some declarations to save a few bytes lateron
    for(String x:p) l[m++]=x.length();
    m=Math.max(l[0],Math.max(l[1],l[2]))+2;
    m+=m%2<1? //ensure odd length of the podests
        1
        :m==3?2:0; //ensure the length is at least 3 (in my code, m is the length of the podests + 2)
    for(i=0;i<7;i++,s+="\n") //iterate by row
        for(a=1;a<4;a=a==1?0:a+2) //iterate by place: a=1,0,2
            for(j=0,k=2*a,t=(m-l[a])/2;j<m;j++) //iterate by column
                //k is the row number from top in which the a-th name goes
                //t is the column at which the name starts
                //now, append the right char:
                s+=i==k? //write the name
                    j>=t&j<t+l[a]?
                        p[a].charAt(j-t)
                        :" "
                    :i==k+1? //write the top of the podest ("@---@")
                        j%~-m<1?
                            "@"
                            :"-"
                    :i>=k+2? //write the bottom of the podest ("|  |@  |")
                        j%~-m<1? //the left and right edge of the podest
                            "|"
                            :j==m/2? //the center of the podest
                                i==k+2? //are we at the first row of the bottom?
                                    "@" //the case where we have to write "| @ |"
                                    :"|" //the case "| | |"
                                :" "
                        :" "
                ;
    return s;
}

输入必须以String长度为3的-array 给出。示例如下所示:

public static void main(String[] args){
    System.out.print(r(new String[]{"Anthony", "Bertram", "Carlos"}));
}

输出:

          Anthony          
         @-------@         
 Bertram |   @   |         
@-------@|   |   |         
|   @   ||   |   | Carlos  
|   |   ||   |   |@-------@
|   |   ||   |   ||   @   |

1
好的答案,欢迎来到PPCG!向我+1!这里有一些基本的知识可以使它变为342字节:Java 8+ lambda而不是常规方法;Java 10+ var代替String; 用for-each循环填充长度数组;改变if(m%2==0)m++;if(m==3)m=5;m+=m%2<1?m==2?3:1:0为相同的效果; 都%nr==0变成了%nr<1; 更改%(m-1)%~-m; 将所有内容放入循环本身,以便{}可以除去括号。
凯文·克鲁伊森

如果您还没看过,那么通读Java 技巧<all language>技巧可能都很有趣。入住愉快!
凯文·克鲁伊森

@KevinCruijssen好,非常感谢!我将更新帖子!
bruderjakob17

建议m-l[a]>>1代替(m-l[a])/2i<k+2?" ":j%~-m<1?"|":j==m/2?i==k+2?"@":"|"代替i>=k+2?j%~-m<1?"|":j==m/2?i==k+2?"@":"|":" "
ceilingcat

1

C(GCC)302个 293 292 289 287字节

-6字节,感谢ceilingcat

#define P(h,n)r=w+2-L[n];i/h?printf("%*s%*s%*s",-~r/2,D,L[n],i>h?D:N[n],r/2,D):printf(~i/h?"@%s@":"|%*s%c%*s|",~i/h?D+1:w/2,D,i>h-3?64:'|',w/2,D);
f(int**N){char L[3],w=3,i=3,r,D[99]={};for(;i--;)w=w<(L[i]=strlen(N[i]))?L[i]|1:w;memset(D+1,45,w);for(i=7;i--;puts(D)){P(4,1)P(6,0)P(2,2)}}

在这里运行

脱节并解释(从技术上讲,宏中的反斜杠后不能有注释,因此它将不会运行)

#define P(h,n)\
    r=w+2-L[n];\ //get leftover width
    i/h?\ //if i >= h
        printf("%*s%*s%*s",-~r/2,D,L[n],i>h?D:N[n],r/2,D):\//if too high print all spaces, otherwise center the name
        printf(~i/h?"@%s@":"|%*s%c%*s|",~i/h?D+1:w/2,D,i>h-3?64:'|',w/2,D);
//if (i == h - 1) print top row using D calculated if row right below top, else print '@'(64) in center, otherwise '|'
f(int**N){
    char
        L[3],//lengths of each string
        w=3,//width (init to minimum)
        i=3,//index, used in for loops
        l,//left padding
        r,//right padding
        D[99]={};//string of '-' of correct length (max 99) but first char is null for empty string
    for(;i--;)//i was set to 3 before, i will be {2,1,0}
        w=w<(L[i]=strlen(N[i]))?//set length to str len and compare to longest width so far
            L[i]|1://set it to length if longer, but make sure it is odd
            w;//do not replace
    memset(D+1,45,w); //set the first w bits of D to '-', leaves a null terminator
    for(i=7;i--;puts(D)){//i will be {6...0}
        P(4,1)//print second place, 4 high
        P(6,0)//print first place, 6 high
        P(2,2)//print thrid place, 2 high
    }
}

这是调用代码

int main()
{
  char* N[3] = {"Tom", "Anne", "Sue"} ;
  f(N);
}

和输出

         Tom         
       @-----@       
  Anne |  @  |       
@-----@|  |  |       
|  @  ||  |  |  Sue  
|  |  ||  |  |@-----@
|  |  ||  |  ||  @  |

建议for(;i--;memset(D+1,45,w))w=w<(L[i]=strlen(N[i]))?L[i]|1:w;而不是for(;i--;)w=w<(L[i]=strlen(N[i]))?L[i]|1:w;memset(D+1,45,w);
ceilingcat

1

Windows PowerShell231 223字节

param($a)$w=($a|% le*|sort)[-1]
if(3-gt$w){$w=3}$w+=1-$w%2
0..6|%{$r=$_
-join($a|%{$m=' -'[5-eq($o=$r+2*(++$i%3))]
$e='     @|||||'[$o]
$x=(,''*4+$_,'','@'+,'|'*4)[$o]
"$e$($x|% *ft(($x.Length+$w)/2-.1)$m|% *ht $w $m)$e"})}

在线尝试!

输入为array @('second','first','third')。展开版本:

param($arr)
$width=($arr|% length|sort)[-1]
if(3-gt$width){$width=3}
$width+=1-$width%2

0..6|%{ $row=$_                         # 7 rows
    -join($arr|%{                       # 3 joined columns. Each column array contains 11 lines.
        $offset = $row+2*(++$i%3)       # (2,4,0) -> offset in column array #   0:
        $middle = ' -'[5-eq$offset]                                         #   1:
        $edge   = '     @|||||'[$offset]                                    #   2:
        $center = ('','','','',$_,'','@','|','|','|','|')[$offset]          #   3:
                                                                            #   4:  name
        # pad $x to a center                                                #   5: @---@
        $center = $center|% PadLeft (($center.Length+$width)/2-.1) $middle  #   6: | @ |
        $center = $center|% PadRight $width $middle                         #   7: | | |
                                                                            #   8: | | |
        # add the $edge                                                     #   9: | | |
        "$edge$center$edge"                                                 #  10: | | |
    })
}

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.