gitextract_y87xhl71/ ├── README.md ├── bin/ │ ├── linux/ │ │ ├── Imserver │ │ ├── uploader │ │ ├── webim │ │ └── webrtcserver │ └── mac/ │ ├── Imserver │ ├── uploader │ ├── webim │ └── webrtcserver ├── cert.pem ├── key.pem └── webroot/ ├── dist/ │ ├── css/ │ │ ├── layui.css │ │ ├── layui.mobile.css │ │ └── modules/ │ │ ├── code.css │ │ ├── laydate/ │ │ │ └── default/ │ │ │ └── laydate.css │ │ ├── layer/ │ │ │ └── default/ │ │ │ └── layer.css │ │ └── layim/ │ │ ├── html/ │ │ │ ├── chatlog.html │ │ │ ├── find.html │ │ │ ├── getmsg.json │ │ │ └── msgbox.html │ │ ├── layim.css │ │ └── mobile/ │ │ └── layim.css │ ├── jquery-2.2.4.js │ ├── js/ │ │ ├── index.js │ │ ├── index_mob.js │ │ ├── index_pc.js │ │ ├── main_mob.js │ │ ├── main_pc.js │ │ ├── new_mob.js │ │ └── new_pc.js │ ├── lay/ │ │ └── modules/ │ │ ├── carousel.js │ │ ├── code.js │ │ ├── element.js │ │ ├── flow.js │ │ ├── form.js │ │ ├── jquery.js │ │ ├── laydate.js │ │ ├── layedit.js │ │ ├── layer.js │ │ ├── layim.js │ │ ├── laypage.js │ │ ├── laytpl.js │ │ ├── mobile.js │ │ ├── table.js │ │ ├── tree.js │ │ ├── upload.js │ │ └── util.js │ ├── layui.all.js │ └── layui.js ├── html/ │ ├── css/ │ │ ├── mobilecss.css │ │ ├── rd.css │ │ └── style.css │ ├── index.html │ ├── js/ │ │ ├── adapter-latest.js │ │ ├── domain.js │ │ └── recorder.js │ ├── json/ │ │ └── mine.json │ ├── mobile/ │ │ ├── index.html │ │ ├── main.html │ │ ├── new.html │ │ └── null │ └── pc/ │ ├── index.html │ ├── main.html │ ├── new.html │ └── null ├── html80/ │ └── index.html ├── index.html └── upload/ └── index.html