-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 65af4df
Showing
60 changed files
with
1,304 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Auto detect text files and perform LF normalization | ||
* text=auto | ||
|
||
# Custom for Visual Studio | ||
*.cs diff=csharp | ||
*.sln merge=union | ||
*.csproj merge=union | ||
*.vbproj merge=union | ||
*.fsproj merge=union | ||
*.dbproj merge=union | ||
|
||
# Standard to msysgit | ||
*.doc diff=astextplain | ||
*.DOC diff=astextplain | ||
*.docx diff=astextplain | ||
*.DOCX diff=astextplain | ||
*.dot diff=astextplain | ||
*.DOT diff=astextplain | ||
*.pdf diff=astextplain | ||
*.PDF diff=astextplain | ||
*.rtf diff=astextplain | ||
*.RTF diff=astextplain |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,215 @@ | ||
################# | ||
## Eclipse | ||
################# | ||
|
||
*.pydevproject | ||
.project | ||
.metadata | ||
bin/ | ||
tmp/ | ||
*.tmp | ||
*.bak | ||
*.swp | ||
*~.nib | ||
local.properties | ||
.classpath | ||
.settings/ | ||
.loadpath | ||
|
||
# External tool builders | ||
.externalToolBuilders/ | ||
|
||
# Locally stored "Eclipse launch configurations" | ||
*.launch | ||
|
||
# CDT-specific | ||
.cproject | ||
|
||
# PDT-specific | ||
.buildpath | ||
|
||
|
||
################# | ||
## Visual Studio | ||
################# | ||
|
||
## Ignore Visual Studio temporary files, build results, and | ||
## files generated by popular Visual Studio add-ons. | ||
|
||
# User-specific files | ||
*.suo | ||
*.user | ||
*.sln.docstates | ||
|
||
# Build results | ||
|
||
[Dd]ebug/ | ||
[Rr]elease/ | ||
x64/ | ||
build/ | ||
[Bb]in/ | ||
[Oo]bj/ | ||
|
||
# MSTest test Results | ||
[Tt]est[Rr]esult*/ | ||
[Bb]uild[Ll]og.* | ||
|
||
*_i.c | ||
*_p.c | ||
*.ilk | ||
*.meta | ||
*.obj | ||
*.pch | ||
*.pdb | ||
*.pgc | ||
*.pgd | ||
*.rsp | ||
*.sbr | ||
*.tlb | ||
*.tli | ||
*.tlh | ||
*.tmp | ||
*.tmp_proj | ||
*.log | ||
*.vspscc | ||
*.vssscc | ||
.builds | ||
*.pidb | ||
*.log | ||
*.scc | ||
|
||
# Visual C++ cache files | ||
ipch/ | ||
*.aps | ||
*.ncb | ||
*.opensdf | ||
*.sdf | ||
*.cachefile | ||
|
||
# Visual Studio profiler | ||
*.psess | ||
*.vsp | ||
*.vspx | ||
|
||
# Guidance Automation Toolkit | ||
*.gpState | ||
|
||
# ReSharper is a .NET coding add-in | ||
_ReSharper*/ | ||
*.[Rr]e[Ss]harper | ||
|
||
# TeamCity is a build add-in | ||
_TeamCity* | ||
|
||
# DotCover is a Code Coverage Tool | ||
*.dotCover | ||
|
||
# NCrunch | ||
*.ncrunch* | ||
.*crunch*.local.xml | ||
|
||
# Installshield output folder | ||
[Ee]xpress/ | ||
|
||
# DocProject is a documentation generator add-in | ||
DocProject/buildhelp/ | ||
DocProject/Help/*.HxT | ||
DocProject/Help/*.HxC | ||
DocProject/Help/*.hhc | ||
DocProject/Help/*.hhk | ||
DocProject/Help/*.hhp | ||
DocProject/Help/Html2 | ||
DocProject/Help/html | ||
|
||
# Click-Once directory | ||
publish/ | ||
|
||
# Publish Web Output | ||
*.Publish.xml | ||
*.pubxml | ||
|
||
# NuGet Packages Directory | ||
## TODO: If you have NuGet Package Restore enabled, uncomment the next line | ||
#packages/ | ||
|
||
# Windows Azure Build Output | ||
csx | ||
*.build.csdef | ||
|
||
# Windows Store app package directory | ||
AppPackages/ | ||
|
||
# Others | ||
sql/ | ||
*.Cache | ||
ClientBin/ | ||
[Ss]tyle[Cc]op.* | ||
~$* | ||
*~ | ||
*.dbmdl | ||
*.[Pp]ublish.xml | ||
*.pfx | ||
*.publishsettings | ||
|
||
# RIA/Silverlight projects | ||
Generated_Code/ | ||
|
||
# Backup & report files from converting an old project file to a newer | ||
# Visual Studio version. Backup files are not needed, because we have git ;-) | ||
_UpgradeReport_Files/ | ||
Backup*/ | ||
UpgradeLog*.XML | ||
UpgradeLog*.htm | ||
|
||
# SQL Server files | ||
App_Data/*.mdf | ||
App_Data/*.ldf | ||
|
||
############# | ||
## Windows detritus | ||
############# | ||
|
||
# Windows image file caches | ||
Thumbs.db | ||
ehthumbs.db | ||
|
||
# Folder config file | ||
Desktop.ini | ||
|
||
# Recycle Bin used on file shares | ||
$RECYCLE.BIN/ | ||
|
||
# Mac crap | ||
.DS_Store | ||
|
||
|
||
############# | ||
## Python | ||
############# | ||
|
||
*.py[co] | ||
|
||
# Packages | ||
*.egg | ||
*.egg-info | ||
dist/ | ||
build/ | ||
eggs/ | ||
parts/ | ||
var/ | ||
sdist/ | ||
develop-eggs/ | ||
.installed.cfg | ||
|
||
# Installer logs | ||
pip-log.txt | ||
|
||
# Unit test / coverage reports | ||
.coverage | ||
.tox | ||
|
||
#Translations | ||
*.mo | ||
|
||
#Mr Developer | ||
.mr.developer.cfg |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
*{margin:0;padding:0;-moz-user-select:none;-khtml-user-select:none;user-select:none} | ||
form,ul,ol,li,dl,dt,dd,h1,h2,h3,h4,h5,p{list-style:none outside none} | ||
a{text-decoration:none;color:#ccc;outline:none} | ||
a:hover{text-decoration:underline;color:#1298F4} | ||
a img{border:none} | ||
.fr{float:right} | ||
.fl{float:left} | ||
body{font:12px/1.8 Microsoft YaHei,simsong;height:100%;overflow:hidden;background:url(../images/background.jpg) repeat center top;} | ||
.bgloader{background:url(../images/loading.gif) no-repeat #fff center;z-index:10000;position:absolute;top:0;left:0;width:100%;height:100%} | ||
.ie-noscript-warning{position:absolute;left:50%;top:50%} | ||
.ie-noscript-warning div{position:relative;left:-210px;top:-110px;width:384px;height:171px;background:url(ienoscript.gif) red no-repeat;opacity:0.7;filter:alpha(opacity=70);padding:10px 15px} | ||
#task-bar{position:absolute;right:0;bottom:0;left:0;width:100%;height:29px;overflow:hidden;border-top:1px solid #272C36;border-color:rgba(20, 20, 20, 0.8);background:#31323A;background:rgba(40, 40, 40, 0.9);opacity:0.95;filter:alpha(opacity=95)} | ||
.task-window{position:absolute;top:0;right:60px;left:48px;height:28px;overflow:hidden;float: left;} | ||
.task-window li{position:relative;float:left;width:100px;height:26px;margin-right:1px;overflow:hidden;color:#F4F4F4;border:1px solid #272C36;border-color:rgba(30, 30, 30, 0.7);cursor:pointer} | ||
.task-window b{background:url(../images/desktop_spr_x.png) repeat-x;display:block;height:24px;font-weight:normal;border:1px solid;border-color:#6F758A #585C6D #414F5A} | ||
.task-window b:hover{border-color:#AEB2BA #9196A1 #616A77;background-position:0 -25px} | ||
.task-window b:active{border-color:#647382 #8A91A0 #9398A6;background-position:0 -50px} | ||
.task-window b.focus{border-color:#B8BFCA #9EA8B7 #8A99A9;background-position:0 -75px} | ||
.task-window img{position:absolute;top:5px;left:5px;width:16px;height:16px;border-radius:3px} | ||
.task-window span{display:block;width:95px;height:24px;padding-left:25px;line-height:25px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis} | ||
.desktop-view{background-position:0 0} | ||
.desktop-view:hover{background-position:-23px 0} | ||
.desktop-view:active{background-position:-46px 0} | ||
#desk{position:absolute;top:0;bottom:30px;width:100%;overflow:hidden;*z-index:2} | ||
*html #desk{height:expression((function(el){el.style.height=document.body.clientHeight-30+"px";})(this));} | ||
#desk ul li, | ||
#desk ul li span, | ||
.title-bar{-moz-user-select:none;-khtml-user-select:none;user-select:none} | ||
#desk ul{width:100%;height:100%;overflow:hidden;position:absolute} | ||
#desk ul li{width:80px;height:57px;padding:10px 0;text-align:center;position:absolute;cursor:pointer} | ||
#desk ul li img{border-radius:3px 3px 3px 3px;display:block;height:32px;width:32px;margin:auto} | ||
#desk ul li span{background:none repeat scroll 0 0 rgba(0, 0, 0, 0.3);border-radius:10px 10px 10px 10px;filter:none;color:#fff;display:inline-block;height:20px;line-height:20px;margin-top:5px;overflow:hidden;padding:0 8px;position:relative;text-align:center;text-overflow:ellipsis;white-space:nowrap;z-index:1;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='img/ui/shortcut_text.png', sizingMethod='scale')} | ||
#desk ul li em{display:none;position:absolute;top:0;left:0;z-index:0;width:80px;height:77px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;background:#000;opacity:0.12;filter:alpha(opacity=12)} | ||
#desk ul li:hover em, | ||
#desk ul li.hover em{display:block} | ||
#desk ul li.focus em{display:block;opacity:0.25;filter:alpha(opacity=25)} | ||
#menubar{position: absolute;z-index: 3;top:50px;width:73px;right:-73px;} | ||
#menubar span{display: block;width:73px;} | ||
#menubar span.mtop{height:13px;background: url(../images/menu.png) no-repeat 3px 0;} | ||
#menubar span.mbot{height:30px;background: url(../images/menu.png) no-repeat bottom right;padding-top:3px;} | ||
#menubar span.mbot a{display: block;width:53px;height:24px;padding-left:20px;line-height:24px;background: url(../images/back.png) no-repeat 50px center;} | ||
#menubar span.mbot a:hover{text-decoration: none;color:#ddd;} | ||
#menubar ul{background: url(../images/menu.png) repeat-y -70px 0;padding:5px 0} | ||
#menubar ul li{width:58px;height:58px;margin:5px 0 5px 12px;} | ||
#menubar ul li a{display: block;width:58px;height:58px;background: url(../images/news.png) no-repeat center center;} | ||
#menubar ul li.i a{background: url(../images/i.png) no-repeat center center;} | ||
#menubar ul li.b a{background: url(../images/b.png) no-repeat center center;} | ||
#menubar ul li.z a{background: url(../images/z.png) no-repeat center center;} | ||
#menubar ul li.m a{background: url(../images/m.png) no-repeat center center;} | ||
#menubar ul li.c a{background: url(../images/c.png) no-repeat center center;} | ||
#menubar ul li:hover,#menubar ul li.selected{background: url(../images/menuicobg.png) no-repeat;} | ||
.window-container{position:absolute;padding:2px;overflow:hidden;border-radius:3px;background:#656672;box-shadow:0 1px 5px rgba(0, 0, 0, 0.4)} | ||
.window-current{background:#363740;box-shadow:0 1px 10px rgba(0, 0, 0, 0.6)} | ||
.title-bar{border:1px solid #ccc;background:url(../images/titlebar_bg_cur.png) repeat-x; 1px solid #ccc;position:relative;z-index:10;height:26px;padding:0 20px;line-height:26px;overflow:hidden;color:#393836;font-weight: bold;border-bottom:1px solid #CCC;cursor:move;border-radius: 3px 3px 0 0;} | ||
.title-handle{overflow: hidden;position: absolute;right: 5px;top: 4px;} | ||
.title-handle a{float:left;width:19px;height:21px;margin-left:5px;line-height:10;overflow:hidden;background-image:url(../images/sprite_main_png.png);background-repeat:no-repeat} | ||
.ha-min{background-position:-5px -58px} | ||
.ha-min:hover{background-position:-5px -30px;} | ||
.ha-max{background-position:-34px -59px} | ||
.ha-max:hover{background-position:-34px -30px} | ||
.ha-revert{background-position:-94px -59px} | ||
.ha-revert:hover{background-position:-94px -30px} | ||
.ha-close{background-position:-64px -59px} | ||
.ha-close:hover{background-position:-64px -30px} | ||
.window-frame{position:absolute;top:30px;right:2px;bottom:32px;*bottom:29px;left:2px;background:#FFF} | ||
*html .window-frame{height:expression((function(el){el.style.height=el.parentNode.clientHeight-59+"px";})(this));} | ||
.window-frame iframe{position:absolute;border:0;height:100%;width:100%;top:0;bottom:0;left:0;right:0} | ||
.set-bar{_width:100%;position:absolute;background:#E8E8E8;border-top:1px solid #b9b9b9;bottom:0;height:30px;left:2px;right:2px;bottom:2px} | ||
.set-bar .btn{margin-top:3px;margin-right:5px;border:1px solid #E8E8E8;border-radius:3px;color:#7D7D7D;cursor:pointer;display:inline-block;height:20px;padding:1px;position:relative} | ||
.set-bar .btn:hover{border:1px solid #7D7D7D;background:#fff;color:#333;text-decoration:none} | ||
.set-bar .btn .icon{left:8px;position:absolute;top:3px} | ||
.set-bar .btn .btn-con{height:20px;line-height:21px;overflow:hidden;padding:0 8px;} | ||
.popup-menu{background:url(popup_menu.gif) repeat-y scroll 0 0 #FFFFFF;border:1px solid #AEAEAE;box-shadow:0 0 6px rgba(0, 0, 0, 0.4);position:absolute;width:125px} | ||
.popup-menu ul{padding:1px;position:relative} | ||
.popup-menu li{height:24px;position:relative;vertical-align:middle} | ||
.popup-menu a{background-position:100px 100px;border-radius:2px;color:#333333;display:block;height:24px;line-height:24px;overflow:hidden;padding-left:35px} | ||
.popup-menu a:hover,.popup-menu a.focus{background-color:#3B7CE6;background-position:0 -780px;color:#FFFFFF;text-decoration:none} | ||
.smart_menu_box{display:none; width:140px; position:absolute; z-index:201105;} | ||
.smart_menu_body{padding:1px; border:1px solid #000; background-color:#fff;border-radius:2px; } | ||
.smart_menu_ul{margin:0; padding:0; list-style-type:none;} | ||
.smart_menu_li{position:relative;} | ||
.smart_menu_a{display:block; height:25px; line-height:24px; padding:0 5px 0 25px; color:#000; font-size:12px; text-decoration:none; overflow:hidden;} | ||
.smart_menu_a:hover, .smart_menu_a_hover{background-color:#348CCC; color:#fff; text-decoration:none;} | ||
.smart_menu_li_separate{line-height:0; margin:3px; border-bottom:1px solid #B8CBCB; font-size:0;} | ||
.smart_menu_triangle{width:0; height:0; border:5px dashed transparent; border-left:5px solid #666; overflow:hidden; position:absolute; top:7px; right:5px;} | ||
.smart_menu_a:hover .smart_menu_triangle, .smart_menu_a_hover .smart_menu_triangle{border-left-color:#fff;} | ||
.smart_menu_li_hover .smart_menu_box{top:-1px; left:130px;} | ||
#start-menu{position:absolute;bottom:30px;left:1px; z-index:9999;border:solid 2px #000;border-radius:3px; display:none;background:#fff;} | ||
.start-menu{ float:left; padding:15px;} | ||
.start-menu li{line-height:28px;border:solid 1px #fff;margin:3px 0;} | ||
.start-menu li:hover,.start-menu li.menuSelected{border:solid 1px #ccc;border-radius:2px; background:#eee; background:-webkit-gradient( linear,left top,left bottom,color-stop(0.39, rgb(247,247,247)),color-stop(0, rgb(250,250,250)),color-stop(0.94, rgb(240,240,240))) ;background:-moz-linear-gradient(center top,rgb(247,247,247) 39%,rgb(250,250,250) 0%,rgb(240,240,240) 94%);} | ||
.start-menu li a{ color:#000; display:block;padding:0 0 0 30px;width:80px;text-shadow: 0 0 1px #ddd, 0 0 0 #000; } | ||
.startMenuBtn{display:block;width:32px;height:32px;cursor:pointer; position:absolute;z-index:9999; bottom:10px;left:8px;background:url("../images/taskico.png") no-repeat center;_background:url("../images/taskico.gif") no-repeat center;} | ||
.startMenuBtn:hover{-moz-transform:rotate(-20deg);-webkit-transform:rotate(-20deg);-o-transform:rotate(-20deg);} | ||
.start-menu li.sm1 a{background:url("../images/sm1.png") no-repeat 5px center;} | ||
.start-menu li.sm2 a{background:url("../images/sm2.png") no-repeat 5px center;} | ||
.start-menu li.sm3 a{background:url("../images/sm3.png") no-repeat 5px center;} | ||
.start-menu li.sm4 a{background:url("../images/sm4.png") no-repeat 5px center;} | ||
.start-menu li.sm5 a{background:url("../images/sm5.png") no-repeat 5px center;} | ||
.start-menu li.sm6 a{background:url("../images/sm6.png") no-repeat 5px center;} | ||
.start-menu li.sm7 a{background:url("../images/sm7.png") no-repeat 5px center;} | ||
.start-menu li.sm8 a{background:url("../images/sm8.png") no-repeat 5px center;} | ||
.zeng_msgbox_layer,.zeng_msgbox_layer .gtl_ico_succ,.zeng_msgbox_layer .gtl_ico_fail,.zeng_msgbox_layer .gtl_ico_hits,.zeng_msgbox_layer .gtl_ico_clear, | ||
.zeng_msgbox_layer .gtl_end{display:inline-block;height:54px;line-height:54px;font-weight:bold;font-size:14px;color:#606060;background-image:url(../images/gb_tip_layer.png);_background-image:url(../images/gb_tip_layer_ie6.png);background-repeat:no-repeat} | ||
.zeng_msgbox_layer_wrap{width:100%;position:fixed;_position:absolute;top:46%;left:0;text-align:center;z-index:65533} | ||
.zeng_msgbox_layer{background-position:0 -161px;background-repeat:repeat-x;padding:0 18px 0 9px;margin:0 auto;position:relative} | ||
.zeng_msgbox_layer .gtl_ico_succ{background-position:-6px 0;left:-45px;top:0;width:45px;position:absolute} | ||
.zeng_msgbox_layer .gtl_end{background-position:0 0;position:absolute;right:-6px;top:0;width:6px} | ||
.zeng_msgbox_layer .gtl_ico_fail{background-position:-6px -108px;position:absolute;left:-45px;top:0;width:45px} | ||
.zeng_msgbox_layer .gtl_ico_hits{background-position:-6px -54px;position:absolute;left:-45px;top:0;width:45px} | ||
.zeng_msgbox_layer .gtl_ico_clear{background-position:-6px 0;left:-5px;width:5px;position:absolute;top:0} | ||
.zeng_msgbox_layer .gtl_ico_loading{width:16px;height:16px;border:0;background-image:url(../images/gb_tip_loading.gif);float:left;margin:19px 10px 0 5px} | ||
.noscript-warning{background:#fff;position:absolute;top:0;left:0;font-size:18px;color:#333;width:100%;height:100%; padding: 2px 15px 2px 23px; text-align:left; z-index:10000;line-height:100px; text-align:center; color:#c00;} | ||
#ie6-warning{background:rgb(255,255,225) no-repeat scroll 8px center;text-align: center;position:absolute;margin: 0 auto;color:#000;width:100%; line-height:30px; z-index:99; border-bottom:solid 1px #000;} | ||
#ie6-warning a {color:#f60; } | ||
#bdshare{position: absolute;z-index:9999;right:10px;bottom: 0px;} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.