├── README.md ├── api.php ├── conf.php ├── fonts.sqlite3 ├── img ├── bg.jpg ├── gif.jpg ├── 图1.jpg └── 图2.png ├── index.html ├── layui ├── css │ ├── layui.css │ ├── layui.mobile.css │ └── modules │ │ ├── code.css │ │ ├── laydate │ │ └── default │ │ │ └── laydate.css │ │ └── layer │ │ └── default │ │ ├── icon-ext.png │ │ ├── icon.png │ │ ├── layer.css │ │ ├── loading-0.gif │ │ ├── loading-1.gif │ │ └── loading-2.gif ├── font │ ├── iconfont.eot │ ├── iconfont.svg │ ├── iconfont.ttf │ ├── iconfont.woff │ └── iconfont.woff2 ├── images │ └── face │ │ ├── 0.gif │ │ ├── 1.gif │ │ ├── 10.gif │ │ ├── 11.gif │ │ ├── 12.gif │ │ ├── 13.gif │ │ ├── 14.gif │ │ ├── 15.gif │ │ ├── 16.gif │ │ ├── 17.gif │ │ ├── 18.gif │ │ ├── 19.gif │ │ ├── 2.gif │ │ ├── 20.gif │ │ ├── 21.gif │ │ ├── 22.gif │ │ ├── 23.gif │ │ ├── 24.gif │ │ ├── 25.gif │ │ ├── 26.gif │ │ ├── 27.gif │ │ ├── 28.gif │ │ ├── 29.gif │ │ ├── 3.gif │ │ ├── 30.gif │ │ ├── 31.gif │ │ ├── 32.gif │ │ ├── 33.gif │ │ ├── 34.gif │ │ ├── 35.gif │ │ ├── 36.gif │ │ ├── 37.gif │ │ ├── 38.gif │ │ ├── 39.gif │ │ ├── 4.gif │ │ ├── 40.gif │ │ ├── 41.gif │ │ ├── 42.gif │ │ ├── 43.gif │ │ ├── 44.gif │ │ ├── 45.gif │ │ ├── 46.gif │ │ ├── 47.gif │ │ ├── 48.gif │ │ ├── 49.gif │ │ ├── 5.gif │ │ ├── 50.gif │ │ ├── 51.gif │ │ ├── 52.gif │ │ ├── 53.gif │ │ ├── 54.gif │ │ ├── 55.gif │ │ ├── 56.gif │ │ ├── 57.gif │ │ ├── 58.gif │ │ ├── 59.gif │ │ ├── 6.gif │ │ ├── 60.gif │ │ ├── 61.gif │ │ ├── 62.gif │ │ ├── 63.gif │ │ ├── 64.gif │ │ ├── 65.gif │ │ ├── 66.gif │ │ ├── 67.gif │ │ ├── 68.gif │ │ ├── 69.gif │ │ ├── 7.gif │ │ ├── 70.gif │ │ ├── 71.gif │ │ ├── 8.gif │ │ └── 9.gif ├── lay │ └── modules │ │ ├── carousel.js │ │ ├── code.js │ │ ├── colorpicker.js │ │ ├── element.js │ │ ├── flow.js │ │ ├── form.js │ │ ├── jquery.js │ │ ├── laydate.js │ │ ├── layedit.js │ │ ├── layer.js │ │ ├── laypage.js │ │ ├── laytpl.js │ │ ├── mobile.js │ │ ├── rate.js │ │ ├── slider.js │ │ ├── table.js │ │ ├── transfer.js │ │ ├── tree.js │ │ ├── upload.js │ │ └── util.js ├── layui.all.js └── layui.js └── xiunophp ├── LICENSE.txt ├── README.txt ├── array.func.php ├── cache.func.php ├── cache_apc.class.php ├── cache_memcached.class.php ├── cache_mysql.class.php ├── cache_redis.class.php ├── cache_xcache.class.php ├── cache_yac.class.php ├── db.func.php ├── db_mysql.class.php ├── db_pdo_mongodb.class.php ├── db_pdo_mysql.class.php ├── db_pdo_sqlite.class.php ├── image.func.php ├── misc.func.php ├── pingyin.func.php ├── xiunophp.min.php ├── xiunophp.php ├── xn_encrypt.func.php ├── xn_html_safe.func.php ├── xn_send_mail.func.php ├── xn_zip.func.php └── xn_zip_old.func.php /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/README.md -------------------------------------------------------------------------------- /api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/api.php -------------------------------------------------------------------------------- /conf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/conf.php -------------------------------------------------------------------------------- /fonts.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/fonts.sqlite3 -------------------------------------------------------------------------------- /img/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/img/bg.jpg -------------------------------------------------------------------------------- /img/gif.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/img/gif.jpg -------------------------------------------------------------------------------- /img/图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/img/图1.jpg -------------------------------------------------------------------------------- /img/图2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/img/图2.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/index.html -------------------------------------------------------------------------------- /layui/css/layui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/css/layui.css -------------------------------------------------------------------------------- /layui/css/layui.mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/css/layui.mobile.css -------------------------------------------------------------------------------- /layui/css/modules/code.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/css/modules/code.css -------------------------------------------------------------------------------- /layui/css/modules/laydate/default/laydate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/css/modules/laydate/default/laydate.css -------------------------------------------------------------------------------- /layui/css/modules/layer/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/css/modules/layer/default/icon-ext.png -------------------------------------------------------------------------------- /layui/css/modules/layer/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/css/modules/layer/default/icon.png -------------------------------------------------------------------------------- /layui/css/modules/layer/default/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/css/modules/layer/default/layer.css -------------------------------------------------------------------------------- /layui/css/modules/layer/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/css/modules/layer/default/loading-0.gif -------------------------------------------------------------------------------- /layui/css/modules/layer/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/css/modules/layer/default/loading-1.gif -------------------------------------------------------------------------------- /layui/css/modules/layer/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/css/modules/layer/default/loading-2.gif -------------------------------------------------------------------------------- /layui/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/font/iconfont.eot -------------------------------------------------------------------------------- /layui/font/iconfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/font/iconfont.svg -------------------------------------------------------------------------------- /layui/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/font/iconfont.ttf -------------------------------------------------------------------------------- /layui/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/font/iconfont.woff -------------------------------------------------------------------------------- /layui/font/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/font/iconfont.woff2 -------------------------------------------------------------------------------- /layui/images/face/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/0.gif -------------------------------------------------------------------------------- /layui/images/face/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/1.gif -------------------------------------------------------------------------------- /layui/images/face/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/10.gif -------------------------------------------------------------------------------- /layui/images/face/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/11.gif -------------------------------------------------------------------------------- /layui/images/face/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/12.gif -------------------------------------------------------------------------------- /layui/images/face/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/13.gif -------------------------------------------------------------------------------- /layui/images/face/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/14.gif -------------------------------------------------------------------------------- /layui/images/face/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/15.gif -------------------------------------------------------------------------------- /layui/images/face/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/16.gif -------------------------------------------------------------------------------- /layui/images/face/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/17.gif -------------------------------------------------------------------------------- /layui/images/face/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/18.gif -------------------------------------------------------------------------------- /layui/images/face/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/19.gif -------------------------------------------------------------------------------- /layui/images/face/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/2.gif -------------------------------------------------------------------------------- /layui/images/face/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/20.gif -------------------------------------------------------------------------------- /layui/images/face/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/21.gif -------------------------------------------------------------------------------- /layui/images/face/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/22.gif -------------------------------------------------------------------------------- /layui/images/face/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/23.gif -------------------------------------------------------------------------------- /layui/images/face/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/24.gif -------------------------------------------------------------------------------- /layui/images/face/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/25.gif -------------------------------------------------------------------------------- /layui/images/face/26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/26.gif -------------------------------------------------------------------------------- /layui/images/face/27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/27.gif -------------------------------------------------------------------------------- /layui/images/face/28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/28.gif -------------------------------------------------------------------------------- /layui/images/face/29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/29.gif -------------------------------------------------------------------------------- /layui/images/face/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/3.gif -------------------------------------------------------------------------------- /layui/images/face/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/30.gif -------------------------------------------------------------------------------- /layui/images/face/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/31.gif -------------------------------------------------------------------------------- /layui/images/face/32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/32.gif -------------------------------------------------------------------------------- /layui/images/face/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/33.gif -------------------------------------------------------------------------------- /layui/images/face/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/34.gif -------------------------------------------------------------------------------- /layui/images/face/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/35.gif -------------------------------------------------------------------------------- /layui/images/face/36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/36.gif -------------------------------------------------------------------------------- /layui/images/face/37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/37.gif -------------------------------------------------------------------------------- /layui/images/face/38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/38.gif -------------------------------------------------------------------------------- /layui/images/face/39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/39.gif -------------------------------------------------------------------------------- /layui/images/face/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/4.gif -------------------------------------------------------------------------------- /layui/images/face/40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/40.gif -------------------------------------------------------------------------------- /layui/images/face/41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/41.gif -------------------------------------------------------------------------------- /layui/images/face/42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/42.gif -------------------------------------------------------------------------------- /layui/images/face/43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/43.gif -------------------------------------------------------------------------------- /layui/images/face/44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/44.gif -------------------------------------------------------------------------------- /layui/images/face/45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/45.gif -------------------------------------------------------------------------------- /layui/images/face/46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/46.gif -------------------------------------------------------------------------------- /layui/images/face/47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/47.gif -------------------------------------------------------------------------------- /layui/images/face/48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/48.gif -------------------------------------------------------------------------------- /layui/images/face/49.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/49.gif -------------------------------------------------------------------------------- /layui/images/face/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/5.gif -------------------------------------------------------------------------------- /layui/images/face/50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/50.gif -------------------------------------------------------------------------------- /layui/images/face/51.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/51.gif -------------------------------------------------------------------------------- /layui/images/face/52.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/52.gif -------------------------------------------------------------------------------- /layui/images/face/53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/53.gif -------------------------------------------------------------------------------- /layui/images/face/54.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/54.gif -------------------------------------------------------------------------------- /layui/images/face/55.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/55.gif -------------------------------------------------------------------------------- /layui/images/face/56.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/56.gif -------------------------------------------------------------------------------- /layui/images/face/57.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/57.gif -------------------------------------------------------------------------------- /layui/images/face/58.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/58.gif -------------------------------------------------------------------------------- /layui/images/face/59.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/59.gif -------------------------------------------------------------------------------- /layui/images/face/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/6.gif -------------------------------------------------------------------------------- /layui/images/face/60.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/60.gif -------------------------------------------------------------------------------- /layui/images/face/61.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/61.gif -------------------------------------------------------------------------------- /layui/images/face/62.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/62.gif -------------------------------------------------------------------------------- /layui/images/face/63.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/63.gif -------------------------------------------------------------------------------- /layui/images/face/64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/64.gif -------------------------------------------------------------------------------- /layui/images/face/65.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/65.gif -------------------------------------------------------------------------------- /layui/images/face/66.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/66.gif -------------------------------------------------------------------------------- /layui/images/face/67.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/67.gif -------------------------------------------------------------------------------- /layui/images/face/68.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/68.gif -------------------------------------------------------------------------------- /layui/images/face/69.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/69.gif -------------------------------------------------------------------------------- /layui/images/face/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/7.gif -------------------------------------------------------------------------------- /layui/images/face/70.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/70.gif -------------------------------------------------------------------------------- /layui/images/face/71.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/71.gif -------------------------------------------------------------------------------- /layui/images/face/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/8.gif -------------------------------------------------------------------------------- /layui/images/face/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/images/face/9.gif -------------------------------------------------------------------------------- /layui/lay/modules/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/lay/modules/carousel.js -------------------------------------------------------------------------------- /layui/lay/modules/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/lay/modules/code.js -------------------------------------------------------------------------------- /layui/lay/modules/colorpicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/lay/modules/colorpicker.js -------------------------------------------------------------------------------- /layui/lay/modules/element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/lay/modules/element.js -------------------------------------------------------------------------------- /layui/lay/modules/flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/lay/modules/flow.js -------------------------------------------------------------------------------- /layui/lay/modules/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/lay/modules/form.js -------------------------------------------------------------------------------- /layui/lay/modules/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/lay/modules/jquery.js -------------------------------------------------------------------------------- /layui/lay/modules/laydate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/lay/modules/laydate.js -------------------------------------------------------------------------------- /layui/lay/modules/layedit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/lay/modules/layedit.js -------------------------------------------------------------------------------- /layui/lay/modules/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/lay/modules/layer.js -------------------------------------------------------------------------------- /layui/lay/modules/laypage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/lay/modules/laypage.js -------------------------------------------------------------------------------- /layui/lay/modules/laytpl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/lay/modules/laytpl.js -------------------------------------------------------------------------------- /layui/lay/modules/mobile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/lay/modules/mobile.js -------------------------------------------------------------------------------- /layui/lay/modules/rate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/lay/modules/rate.js -------------------------------------------------------------------------------- /layui/lay/modules/slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/lay/modules/slider.js -------------------------------------------------------------------------------- /layui/lay/modules/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/lay/modules/table.js -------------------------------------------------------------------------------- /layui/lay/modules/transfer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/lay/modules/transfer.js -------------------------------------------------------------------------------- /layui/lay/modules/tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/lay/modules/tree.js -------------------------------------------------------------------------------- /layui/lay/modules/upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/lay/modules/upload.js -------------------------------------------------------------------------------- /layui/lay/modules/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/lay/modules/util.js -------------------------------------------------------------------------------- /layui/layui.all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/layui.all.js -------------------------------------------------------------------------------- /layui/layui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/layui/layui.js -------------------------------------------------------------------------------- /xiunophp/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/xiunophp/LICENSE.txt -------------------------------------------------------------------------------- /xiunophp/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/xiunophp/README.txt -------------------------------------------------------------------------------- /xiunophp/array.func.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/xiunophp/array.func.php -------------------------------------------------------------------------------- /xiunophp/cache.func.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/xiunophp/cache.func.php -------------------------------------------------------------------------------- /xiunophp/cache_apc.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/xiunophp/cache_apc.class.php -------------------------------------------------------------------------------- /xiunophp/cache_memcached.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/xiunophp/cache_memcached.class.php -------------------------------------------------------------------------------- /xiunophp/cache_mysql.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/xiunophp/cache_mysql.class.php -------------------------------------------------------------------------------- /xiunophp/cache_redis.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/xiunophp/cache_redis.class.php -------------------------------------------------------------------------------- /xiunophp/cache_xcache.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/xiunophp/cache_xcache.class.php -------------------------------------------------------------------------------- /xiunophp/cache_yac.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/xiunophp/cache_yac.class.php -------------------------------------------------------------------------------- /xiunophp/db.func.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/xiunophp/db.func.php -------------------------------------------------------------------------------- /xiunophp/db_mysql.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/xiunophp/db_mysql.class.php -------------------------------------------------------------------------------- /xiunophp/db_pdo_mongodb.class.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xiunophp/db_pdo_mysql.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/xiunophp/db_pdo_mysql.class.php -------------------------------------------------------------------------------- /xiunophp/db_pdo_sqlite.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/xiunophp/db_pdo_sqlite.class.php -------------------------------------------------------------------------------- /xiunophp/image.func.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/xiunophp/image.func.php -------------------------------------------------------------------------------- /xiunophp/misc.func.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/xiunophp/misc.func.php -------------------------------------------------------------------------------- /xiunophp/pingyin.func.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/xiunophp/pingyin.func.php -------------------------------------------------------------------------------- /xiunophp/xiunophp.min.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/xiunophp/xiunophp.min.php -------------------------------------------------------------------------------- /xiunophp/xiunophp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/xiunophp/xiunophp.php -------------------------------------------------------------------------------- /xiunophp/xn_encrypt.func.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/xiunophp/xn_encrypt.func.php -------------------------------------------------------------------------------- /xiunophp/xn_html_safe.func.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/xiunophp/xn_html_safe.func.php -------------------------------------------------------------------------------- /xiunophp/xn_send_mail.func.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/xiunophp/xn_send_mail.func.php -------------------------------------------------------------------------------- /xiunophp/xn_zip.func.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/xiunophp/xn_zip.func.php -------------------------------------------------------------------------------- /xiunophp/xn_zip_old.func.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muruoxi2018/Check_Font_Copyright/HEAD/xiunophp/xn_zip_old.func.php --------------------------------------------------------------------------------