├── data ├── ss.jpg ├── car.jpg ├── motor.jpg ├── qrcode.png └── t.js ├── README.md ├── LICENSE ├── .gitignore ├── index.html └── b.js /data/ss.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex2wong/trash-classify/HEAD/data/ss.jpg -------------------------------------------------------------------------------- /data/car.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex2wong/trash-classify/HEAD/data/car.jpg -------------------------------------------------------------------------------- /data/motor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex2wong/trash-classify/HEAD/data/motor.jpg -------------------------------------------------------------------------------- /data/qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex2wong/trash-classify/HEAD/data/qrcode.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # trash-classify 2 | classify trash by [tensorflow coco-ssd](https://github.com/tensorflow/tfjs-models/tree/master/coco-ssd) model. Take a photo then classify ~~ : ) 3 | 4 | ## Excuse Me, 你是什么垃圾?! 5 | 这是一款**人工智障垃圾分类app**,可以解决"你是什么垃圾"这样的灵魂拷问,谢谢~ 6 | app截图: 7 | 8 | ![垃圾截图](https://github.com/alex2wong/trash-classify/blob/master/data/ss.jpg?raw=true) 9 | 10 | 制作过程可参考[我的这篇blog](https://juejin.im/post/5d19b4956fb9a07eb3099310) 11 | 12 | 特别提醒: 首次下载并加载 coco-ssd 模型需要超过10MB,根据设备性能可能要一分钟左右,建议用电脑访问并且耐心等待会儿~ 13 | 14 | 扫码体验: 15 | 16 | ![二维🐎](https://github.com/alex2wong/trash-classify/blob/master/data/qrcode.png?raw=true) 17 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 alex2wong 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | 8 | # Runtime data 9 | pids 10 | *.pid 11 | *.seed 12 | *.pid.lock 13 | 14 | # Directory for instrumented libs generated by jscoverage/JSCover 15 | lib-cov 16 | 17 | # Coverage directory used by tools like istanbul 18 | coverage 19 | 20 | # nyc test coverage 21 | .nyc_output 22 | 23 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 24 | .grunt 25 | 26 | # Bower dependency directory (https://bower.io/) 27 | bower_components 28 | 29 | # node-waf configuration 30 | .lock-wscript 31 | 32 | # Compiled binary addons (https://nodejs.org/api/addons.html) 33 | build/Release 34 | 35 | # Dependency directories 36 | node_modules/ 37 | jspm_packages/ 38 | 39 | # TypeScript v1 declaration files 40 | typings/ 41 | 42 | # Optional npm cache directory 43 | .npm 44 | 45 | # Optional eslint cache 46 | .eslintcache 47 | 48 | # Optional REPL history 49 | .node_repl_history 50 | 51 | # Output of 'npm pack' 52 | *.tgz 53 | 54 | # Yarn Integrity file 55 | .yarn-integrity 56 | 57 | # dotenv environment variables file 58 | .env 59 | 60 | # next.js build output 61 | .next 62 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 拍照垃圾分类大法!! 7 | 8 | 33 | 34 | 35 | 36 | 37 | 38 |
39 |

拍照,人工智障垃圾分类

40 | 41 | 42 | 43 | 44 | 45 |
46 | 47 | 48 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /b.js: -------------------------------------------------------------------------------- 1 | function detectObjs(){resList.innerHTML="Loading Model and Detect, pls wait...",c.style.display="none",catImage.style.display="block",cocoSsd.load().then(function(e){e.detect(catImage).then(function(e){translate2zh(e),console.timeEnd()})})}function trashClassify(e){if(e.length===0)return;const t=e[0].class;var n="",r=0;trashClasses.result.map(function(t){e.map(function(e){if(t.name.indexOf(e.class)>-1){if(r>6)return;r+=1,n+="
  • "+t.name+":"+t.type+"
  • "}})}),console.warn("trash classes returned.."),resList.innerHTML=r>0?n:resList.innerHTML+", 没找到合适的分类"}function translate2zh(e){if(e.length===0){drawResult(e);return}const t={"Ocp-Apim-Subscription-Key":ak,"Content-type":"application/json"},n=[];for(var r=0;r0?r[0].text:e[n].class}drawResult(e),trashClassify(e)}).catch(function(e){alert(e)})}function drawResult(e){catImage.style.display="none",c.style.display="block",context.drawImage(catImage,0,0,256,256),context.font="11px Arial",context.fontWeight=800,console.log("number of detections: ",e.length);for(var t=0;t10?e[t].bbox[1]-5:10);resList.innerHTML="Found "+e.length+" targets"}const catImage=document.getElementById("cat"),imgInput=document.querySelector("#imgInput"),resList=document.querySelector("#result"),c=document.getElementById("canvas"),context=c.getContext("2d"),ak="e7a9dcd56f314f52b2bb88f3305d451a",trashClassURL="https://www.huijienongye.com/index.php/api/Test/garbagego",baseURL="https://api-apc.cognitive.microsofttranslator.com/translate?api-version=3.0&from=en&to=zh-Hans";imgInput.onchange=function(e){var t=e.target.files;if(t.length===0)return;var n=new FileReader;n.onload=function(){catImage.src=n.result,detectObjs()},n.readAsDataURL(t[0])},detectObjs(); -------------------------------------------------------------------------------- /data/t.js: -------------------------------------------------------------------------------- 1 | // trash class... 2 | var trashClasses={result:[{id:"1",name:"艾草",type:"湿垃圾",count:"90"},{id:"12",name:"棒棒糖",type:"湿垃圾",count:"337"},{id:"15",name:"八宝粥",type:"湿垃圾",count:"266"},{id:"16",name:"白茶",type:"湿垃圾",count:"179"},{id:"17",name:"扁豆",type:"湿垃圾",count:"118"},{id:"18",name:"补丁",type:"湿垃圾",count:"105"},{id:"19",name:"饼干",type:"湿垃圾",count:"731"},{id:"20",name:"包猫屎的豆腐猫砂",type:"湿垃圾",count:"9467"},{id:"21",name:"八角",type:"湿垃圾",count:"111"},{id:"22",name:"菠萝",type:"湿垃圾",count:"141"},{id:"23",name:"菠萝包",type:"湿垃圾",count:"320"},{id:"24",name:"板栗壳",type:"湿垃圾",count:"345"},{id:"25",name:"菠萝蜜核",type:"湿垃圾",count:"661"},{id:"26",name:"菠萝皮",type:"湿垃圾",count:"273"},{id:"27",name:"爆米花",type:"湿垃圾",count:"941"},{id:"28",name:"白米虾",type:"湿垃圾",count:"725"},{id:"29",name:"蚌肉",type:"湿垃圾",count:"725"},{id:"30",name:"白砂糖",type:"湿垃圾",count:"224"},{id:"31",name:"白糖",type:"湿垃圾",count:"217"},{id:"32",name:"百香果壳",type:"湿垃圾",count:"684"},{id:"33",name:"包子",type:"湿垃圾",count:"478"},{id:"120",name:"葱",type:"湿垃圾",count:"151"},{id:"121",name:"草本植物",type:"湿垃圾",count:"503"},{id:"122",name:"蚕豆",type:"湿垃圾",count:"147"},{id:"123",name:"茨菇",type:"湿垃圾",count:"95"},{id:"124",name:"炒花生米",type:"湿垃圾",count:"1281"},{id:"125",name:"车厘子核",type:"湿垃圾",count:"713"},{id:"126",name:"叉烧",type:"湿垃圾",count:"111"},{id:"127",name:"叉烧酥",type:"湿垃圾",count:"111"},{id:"128",name:"茶叶",type:"湿垃圾",count:"2418"},{id:"129",name:"虫子",type:"湿垃圾",count:"199"},{id:"130",name:"橙子皮",type:"湿垃圾",count:"308"},{id:"131",name:"草莓",type:"湿垃圾",count:"488891"},{id:"132",name:"草莓叶",type:"湿垃圾",count:"488201"},{id:"133",name:"橙皮",type:"湿垃圾",count:"244"},{id:"134",name:"菜叶",type:"湿垃圾",count:"1278"},{id:"135",name:"宠物粪便",type:"湿垃圾",count:"778"},{id:"136",name:"宠物饲料",type:"湿垃圾",count:"252"},{id:"137",name:"苍蝇",type:"湿垃圾",count:"179"},{id:"138",name:"茶渣",type:"湿垃圾",count:"216"},{id:"139",name:"残枝落叶",type:"湿垃圾",count:"170"},{id:"140",name:"橙子",type:"湿垃圾",count:"141"},{id:"202",name:"蛋壳",type:"湿垃圾",count:"3916"},{id:"203",name:"蛋白",type:"湿垃圾",count:"217"},{id:"204",name:"蛋黄",type:"湿垃圾",count:"253"},{id:"205",name:"大白菜",type:"湿垃圾",count:"547"},{id:"206",name:"豆腐",type:"湿垃圾",count:"204"},{id:"207",name:"豆腐猫砂",type:"湿垃圾",count:"3621"},{id:"208",name:"蛋糕",type:"湿垃圾",count:"596"},{id:"211",name:"冬瓜",type:"湿垃圾",count:"152"},{id:"212",name:"冬瓜皮",type:"湿垃圾",count:"478"},{id:"213",name:"豆浆渣",type:"湿垃圾",count:"235"},{id:"214",name:"大米",type:"湿垃圾",count:"355"},{id:"215",name:"大排",type:"湿垃圾",count:"134"},{id:"216",name:"多肉植物",type:"湿垃圾",count:"1021"},{id:"217",name:"冬笋壳",type:"湿垃圾",count:"334"},{id:"218",name:"大蒜皮",type:"湿垃圾",count:"517"},{id:"219",name:"大蒜叶",type:"湿垃圾",count:"248"},{id:"220",name:"蛋挞",type:"湿垃圾",count:"228"},{id:"221",name:"蛋挞皮",type:"湿垃圾",count:"323"},{id:"223",name:"动物粪便",type:"湿垃圾",count:"755"},{id:"224",name:"动物内脏",type:"湿垃圾",count:"244"},{id:"225",name:"动物尸体",type:"湿垃圾",count:"1352"},{id:"226",name:"凋谢的鲜花",type:"湿垃圾",count:"1173"},{id:"227",name:"豆芽",type:"湿垃圾",count:"120"},{id:"228",name:"冬枣",type:"湿垃圾",count:"124"},{id:"229",name:"大闸蟹",type:"湿垃圾",count:"581"},{id:"230",name:"大闸蟹壳",type:"湿垃圾",count:"2890"},{id:"231",name:"豆制品",type:"湿垃圾",count:"114"},{id:"301",name:"鹅骨头",type:"湿垃圾",count:"5265"},{id:"309",name:"方便面",type:"湿垃圾",count:"765"},{id:"313",name:"凤梨皮",type:"湿垃圾",count:"235"},{id:"314",name:"凤梨酥",type:"湿垃圾",count:"135"},{id:"315",name:"蜂蜜",type:"湿垃圾",count:"130"},{id:"316",name:"番茄",type:"湿垃圾",count:"199"},{id:"317",name:"番茄酱",type:"湿垃圾",count:"444"},{id:"318",name:"废弃食用油",type:"湿垃圾",count:"404"},{id:"319",name:"废弃调味品",type:"湿垃圾",count:"107"},{id:"320",name:"废弃植物",type:"湿垃圾",count:"397"},{id:"373",name:"干脆面",type:"湿垃圾",count:"215"},{id:"374",name:"果冻",type:"湿垃圾",count:"227"},{id:"375",name:"鸽粪",type:"湿垃圾",count:"153"},{id:"376",name:"瓜果",type:"湿垃圾",count:"174"},{id:"377",name:"干果仁",type:"湿垃圾",count:"226"},{id:"378",name:"狗粮",type:"湿垃圾",count:"1086"},{id:"379",name:"咖喱粉",type:"湿垃圾",count:"123"},{id:"380",name:"橄榄核",type:"湿垃圾",count:"700"},{id:"381",name:"干辣椒",type:"湿垃圾",count:"321"},{id:"382",name:"干面条",type:"湿垃圾",count:"376"},{id:"383",name:"果皮",type:"湿垃圾",count:"1276"},{id:"384",name:"桂皮",type:"湿垃圾",count:"213"},{id:"385",name:"过期大米",type:"湿垃圾",count:"422"},{id:"386",name:"过期巧克力",type:"湿垃圾",count:"457"},{id:"387",name:"过期食品",type:"湿垃圾",count:"346"},{id:"388",name:"过期糖",type:"湿垃圾",count:"276"},{id:"389",name:"过期调味料",type:"湿垃圾",count:"171"},{id:"390",name:"蛤肉",type:"湿垃圾",count:"725"},{id:"391",name:"干树叶",type:"湿垃圾",count:"1578"},{id:"392",name:"桂圆干",type:"湿垃圾",count:"213"},{id:"393",name:"桂圆壳",type:"湿垃圾",count:"509"},{id:"394",name:"桂圆核",type:"湿垃圾",count:"775"},{id:"395",name:"甘蔗",type:"湿垃圾",count:"312"},{id:"396",name:"瓜子",type:"湿垃圾",count:"1907"},{id:"397",name:"甘蔗皮",type:"湿垃圾",count:"574"},{id:"398",name:"瓜子壳",type:"湿垃圾",count:"6005"},{id:"399",name:"甘蔗渣",type:"湿垃圾",count:"393"},{id:"459",name:"花瓣",type:"湿垃圾",count:"812"},{id:"460",name:"汉堡",type:"湿垃圾",count:"213"},{id:"461",name:"红肠",type:"湿垃圾",count:"105"},{id:"462",name:"花茶渣",type:"湿垃圾",count:"917"},{id:"463",name:"红豆",type:"湿垃圾",count:"137"},{id:"464",name:"红豆糕",type:"湿垃圾",count:"137"},{id:"465",name:"火锅锅底",type:"湿垃圾",count:"349"},{id:"466",name:"盒饭",type:"湿垃圾",count:"659"},{id:"467",name:"黄瓜",type:"湿垃圾",count:"267"},{id:"468",name:"火锅底料",type:"湿垃圾",count:"395"},{id:"469",name:"花蛤壳",type:"湿垃圾",count:"1302"},{id:"470",name:"黄瓜皮",type:"湿垃圾",count:"614"},{id:"471",name:"韩国泡菜",type:"湿垃圾",count:"479"},{id:"472",name:"火锅渣",type:"湿垃圾",count:"359"},{id:"473",name:"花卉",type:"湿垃圾",count:"817"},{id:"474",name:"花椒",type:"湿垃圾",count:"798"},{id:"475",name:"花甲",type:"湿垃圾",count:"891"},{id:"476",name:"花甲壳",type:"湿垃圾",count:"1176"},{id:"477",name:"胡椒粉",type:"湿垃圾",count:"128"},{id:"478",name:"胡萝卜",type:"湿垃圾",count:"137"},{id:"479",name:"火龙果",type:"湿垃圾",count:"195"},{id:"480",name:"火龙果皮",type:"湿垃圾",count:"1382"},{id:"481",name:"红辣椒",type:"湿垃圾",count:"276"},{id:"482",name:"哈密瓜",type:"湿垃圾",count:"162"},{id:"483",name:"哈密瓜籽",type:"湿垃圾",count:"177"},{id:"484",name:"话梅肉",type:"湿垃圾",count:"927"},{id:"485",name:"花生",type:"湿垃圾",count:"1111"},{id:"486",name:"红薯",type:"湿垃圾",count:"131"},{id:"487",name:"花生酱",type:"湿垃圾",count:"1142"},{id:"488",name:"花生衣",type:"湿垃圾",count:"1132"},{id:"489",name:"花生壳",type:"湿垃圾",count:"2696"},{id:"490",name:"海苔",type:"湿垃圾",count:"120"},{id:"491",name:"核桃肉",type:"湿垃圾",count:"3132"},{id:"493",name:"核桃",type:"湿垃圾",count:"2421"},{id:"494",name:" 茴香",type:"湿垃圾",count:"125"},{id:"495",name:"河虾",type:"湿垃圾",count:"628"},{id:"496",name:"黄杏核",type:"湿垃圾",count:"780"},{id:"497",name:"黄油",type:"湿垃圾",count:"339"},{id:"498",name:"荷叶",type:"湿垃圾",count:"186"},{id:"499",name:"红枣",type:"湿垃圾",count:"254"},{id:"500",name:"红枣核",type:"湿垃圾",count:"1341"},{id:"501",name:"海藻",type:"湿垃圾",count:"115"},{id:"502",name:"馄饨",type:"湿垃圾",count:"127"},{id:"547",name:"鸡蛋",type:"湿垃圾",count:"1194"},{id:"548",name:"鸡蛋卷",type:"湿垃圾",count:"1206"},{id:"549",name:"鸡蛋壳",type:"湿垃圾",count:"9518"},{id:"550",name:"鸡蛋皮",type:"湿垃圾",count:"1438"},{id:"551",name:"鸡蛋仔",type:"湿垃圾",count:"1195"},{id:"552",name:"鸡蛋饼",type:"湿垃圾",count:"1236"},{id:"554",name:"姜",type:"湿垃圾",count:"119"},{id:"555",name:"茭白",type:"湿垃圾",count:"156"},{id:"556",name:"煎饼",type:"湿垃圾",count:"144"},{id:"557",name:"茭白叶",type:"湿垃圾",count:"233"},{id:"558",name:"韭菜",type:"湿垃圾",count:"480"},{id:"559",name:"鸡翅",type:"湿垃圾",count:"471"},{id:"560",name:"菌菇",type:"湿垃圾",count:"96"},{id:"561",name:"桔梗",type:"湿垃圾",count:"98"},{id:"562",name:"鸡骨头",type:"湿垃圾",count:"7828"},{id:"563",name:"鸡肉",type:"湿垃圾",count:"1082"},{id:"564",name:"鸡精",type:"湿垃圾",count:"418"},{id:"565",name:"鸡爪",type:"湿垃圾",count:"528"},{id:"566",name:"酱料",type:"湿垃圾",count:"134"},{id:"567",name:"酒酿",type:"湿垃圾",count:"203"},{id:"568",name:"鸡皮",type:"湿垃圾",count:"480"},{id:"569",name:"鸡排",type:"湿垃圾",count:"389"},{id:"570",name:"桔普茶",type:"湿垃圾",count:"175"},{id:"571",name:"鸡屎",type:"湿垃圾",count:"3370"},{id:"572",name:"姜糖",type:"湿垃圾",count:"235"},{id:"573",name:"结团猫砂",type:"湿垃圾",count:"3447"},{id:"574",name:"甲鱼",type:"湿垃圾",count:"869"},{id:"575",name:"橘子",type:"湿垃圾",count:"158"},{id:"576",name:"金针菇",type:"湿垃圾",count:"290"},{id:"577",name:"橘子皮",type:"湿垃圾",count:"436"},{id:"578",name:"桔子皮",type:"湿垃圾",count:"244"},{id:"668",name:"咖啡伴侣粉",type:"湿垃圾",count:"590"},{id:"669",name:"咖啡残渣",type:"湿垃圾",count:"599"},{id:"670",name:"咖啡豆",type:"湿垃圾",count:"659"},{id:"671",name:"咖啡豆渣",type:"湿垃圾",count:"689"},{id:"672",name:"咖啡粉",type:"湿垃圾",count:"654"},{id:"673",name:"咖啡渣",type:"湿垃圾",count:"1202"},{id:"674",name:"苦瓜",type:"湿垃圾",count:"140"},{id:"675",name:"可降解垃圾袋",type:"湿垃圾",count:"1836"},{id:"676",name:"枯树叶",type:"湿垃圾",count:"1575"},{id:"677",name:"矿物猫砂",type:"湿垃圾",count:"3442"},{id:"678",name:"开心果",type:"湿垃圾",count:"251"},{id:"716",name:"梨",type:"湿垃圾",count:"126"},{id:"717",name:"萝卜干",type:"湿垃圾",count:"147"},{id:"718",name:"绿豆",type:"湿垃圾",count:"140"},{id:"719",name:"绿豆糕",type:"湿垃圾",count:"142"},{id:"720",name:"辣椒",type:"湿垃圾",count:"274"},{id:"721",name:"绿萝",type:"湿垃圾",count:"120"},{id:"722",name:"榴莲肉",type:"湿垃圾",count:"1546"},{id:"723",name:"榴莲酥",type:"湿垃圾",count:"917"},{id:"724",name:"藜麦",type:"湿垃圾",count:"96"},{id:"725",name:"螺蛳",type:"湿垃圾",count:"340"},{id:"726",name:"老鼠",type:"湿垃圾",count:"678"},{id:"727",name:"烂水果",type:"湿垃圾",count:"1456"},{id:"728",name:"螺蛳肉",type:"湿垃圾",count:"966"},{id:"729",name:"螺蛳壳",type:"湿垃圾",count:"774"},{id:"730",name:"辣条",type:"湿垃圾",count:"239"},{id:"731",name:"龙虾片",type:"湿垃圾",count:"2478"},{id:"732",name:"李子",type:"湿垃圾",count:"156"},{id:"733",name:"栗子",type:"湿垃圾",count:"139"},{id:"734",name:"荔枝壳",type:"湿垃圾",count:"1382"},{id:"735",name:"栗子壳",type:"湿垃圾",count:"385"},{id:"736",name:"面包",type:"湿垃圾",count:"908"},{id:"737",name:"面包屑",type:"湿垃圾",count:"935"},{id:"738",name:"毛豆壳",type:"湿垃圾",count:"1821"},{id:"787",name:"米饭",type:"湿垃圾",count:"1267"},{id:"788",name:"面粉",type:"湿垃圾",count:"309"},{id:"789",name:"蘑菇",type:"湿垃圾",count:"131"},{id:"790",name:"芒果核",type:"湿垃圾",count:"1981"},{id:"791",name:"芒果皮",type:"湿垃圾",count:"1498"},{id:"792",name:"猕猴桃",type:"湿垃圾",count:"349"},{id:"793",name:"猫粮",type:"湿垃圾",count:"786"},{id:"794",name:"麻辣烫",type:"湿垃圾",count:"359"},{id:"795",name:"猫屎",type:"湿垃圾",count:"6306"},{id:"796",name:"猫屎咖啡",type:"湿垃圾",count:"6786"},{id:"797",name:"面条",type:"湿垃圾",count:"342"},{id:"798",name:"馒头",type:"湿垃圾",count:"328"},{id:"872",name:"奶茶中的珍珠",type:"湿垃圾",count:"6541"},{id:"873",name:"奶粉",type:"湿垃圾",count:"282"},{id:"874",name:"鸟粪",type:"湿垃圾",count:"222"},{id:"875",name:"年糕",type:"湿垃圾",count:"111"},{id:"876",name:"南瓜皮",type:"湿垃圾",count:"458"},{id:"877",name:"南瓜籽",type:"湿垃圾",count:"183"},{id:"878",name:"奶酪",type:"湿垃圾",count:"179"},{id:"879",name:"柠檬",type:"湿垃圾",count:"136"},{id:"880",name:"糯米",type:"湿垃圾",count:"211"},{id:"881",name:"柠檬皮",type:"湿垃圾",count:"235"},{id:"882",name:"糯米纸",type:"湿垃圾",count:"2394"},{id:"883",name:"牛排",type:"湿垃圾",count:"202"},{id:"884",name:"牛肉",type:"湿垃圾",count:"917"},{id:"885",name:"牛肉干",type:"湿垃圾",count:"1010"},{id:"886",name:"牛蛙",type:"湿垃圾",count:"194"},{id:"887",name:"牛蛙骨",type:"湿垃圾",count:"299"},{id:"888",name:"奶油",type:"湿垃圾",count:"436"},{id:"889",name:"牛油果核",type:"湿垃圾",count:"2018"},{id:"890",name:"牛油果皮",type:"湿垃圾",count:"1649"},{id:"926",name:"藕片",type:"湿垃圾",count:"99"},{id:"928",name:"皮蛋",type:"湿垃圾",count:"326"},{id:"929",name:"普洱茶",type:"湿垃圾",count:"175"},{id:"930",name:"排骨",type:"湿垃圾",count:"686"},{id:"931",name:"平菇",type:"湿垃圾",count:"94"},{id:"932",name:"苹果核",type:"湿垃圾",count:"3234"},{id:"933",name:"苹果皮",type:"湿垃圾",count:"2824"},{id:"934",name:"苹果肉",type:"湿垃圾",count:"1844"},{id:"935",name:"膨化食品",type:"湿垃圾",count:"163"},{id:"937",name:"枇杷核",type:"湿垃圾",count:"595"},{id:"938",name:"糯米滋",type:"湿垃圾",count:"212"},{id:"939",name:"披萨",type:"湿垃圾",count:"150"},{id:"940",name:"葡萄干",type:"湿垃圾",count:"506"},{id:"941",name:"葡萄梗",type:"湿垃圾",count:"340"},{id:"942",name:"葡萄皮",type:"湿垃圾",count:"691"},{id:"943",name:"葡萄籽",type:"湿垃圾",count:"430"},{id:"944",name:"螃蟹壳",type:"湿垃圾",count:"3974"},{id:"978",name:"青菜",type:"湿垃圾",count:"619"},{id:"979",name:"青椒",type:"湿垃圾",count:"105"},{id:"980",name:"巧克力",type:"湿垃圾",count:"393"},{id:"981",name:"巧克力粉",type:"湿垃圾",count:"411"},{id:"982",name:"巧克力酱",type:"湿垃圾",count:"417"},{id:"983",name:"曲奇",type:"湿垃圾",count:"95"},{id:"984",name:"青蟹壳",type:"湿垃圾",count:"2560"},{id:"985",name:"奇异果",type:"湿垃圾",count:"117"},{id:"986",name:"茄子",type:"湿垃圾",count:"145"},{id:"1015",name:"肉骨头",type:"湿垃圾",count:"7080"},{id:"1016",name:"肉类",type:"湿垃圾",count:"726"},{id:"1017",name:"剩菜剩饭",type:"湿垃圾",count:"3205"},{id:"1034",name:"熟面条",type:"湿垃圾",count:"343"},{id:"1035",name:"熟鸡蛋壳",type:"湿垃圾",count:"9585"},{id:"1036",name:"生鸡蛋壳",type:"湿垃圾",count:"9534"},{id:"1037",name:"酸豆角",type:"湿垃圾",count:"128"},{id:"1038",name:"水饺",type:"湿垃圾",count:"758"},{id:"1039",name:"丝瓜皮",type:"湿垃圾",count:"461"},{id:"1040",name:"扇贝肉",type:"湿垃圾",count:"894"},{id:"1041",name:"蔬菜",type:"湿垃圾",count:"835"},{id:"1042",name:"水草",type:"湿垃圾",count:"878"},{id:"1043",name:"蔬菜残余",type:"湿垃圾",count:"840"},{id:"1044",name:"薯片",type:"湿垃圾",count:"475"},{id:"1045",name:"水果",type:"湿垃圾",count:"1401"},{id:"1046",name:"水果干",type:"湿垃圾",count:"1449"},{id:"1047",name:"水果皮",type:"湿垃圾",count:"3133"},{id:"1048",name:"水果软核",type:"湿垃圾",count:"1855"},{id:"1049",name:"石榴籽",type:"湿垃圾",count:"178"},{id:"1050",name:"石榴",type:"湿垃圾",count:"165"},{id:"1051",name:"水蜜桃",type:"湿垃圾",count:"1037"},{id:"1052",name:"水蜜桃肉",type:"湿垃圾",count:"1668"},{id:"1053",name:"薯条",type:"湿垃圾",count:"165"},{id:"1054",name:"山药",type:"湿垃圾",count:"925"},{id:"1055",name:"山楂",type:"湿垃圾",count:"108"},{id:"1056",name:"笋壳",type:"湿垃圾",count:"329"},{id:"1057",name:"蒜皮",type:"湿垃圾",count:"289"},{id:"1058",name:"笋皮",type:"湿垃圾",count:"194"},{id:"1059",name:"食品添加剂",type:"湿垃圾",count:"148"},{id:"1060",name:"蒜头",type:"湿垃圾",count:"178"},{id:"1061",name:"食物残渣",type:"湿垃圾",count:"418"},{id:"1062",name:"三文鱼",type:"湿垃圾",count:"848"},{id:"1063",name:"牲畜粪便",type:"湿垃圾",count:"633"},{id:"1064",name:"输液",type:"湿垃圾",count:"113"},{id:"1065",name:"食用油",type:"湿垃圾",count:"383"},{id:"1066",name:"山竹壳",type:"湿垃圾",count:"898"},{id:"1067",name:"松子壳",type:"湿垃圾",count:"423"},{id:"1068",name:"梭子蟹",type:"湿垃圾",count:"379"},{id:"1069",name:"梭子蟹壳",type:"湿垃圾",count:"2617"},{id:"1225",name:"土豆",type:"湿垃圾",count:"462"},{id:"1226",name:"糖",type:"湿垃圾",count:"210"},{id:"1227",name:"土豆泥",type:"湿垃圾",count:"499"},{id:"1228",name:"土豆皮",type:"湿垃圾",count:"644"},{id:"1229",name:"糖果",type:"湿垃圾",count:"335"},{id:"1230",name:"甜品",type:"湿垃圾",count:"99"},{id:"1231",name:"蹄髈",type:"湿垃圾",count:"114"},{id:"1232",name:"桃子",type:"湿垃圾",count:"1152"},{id:"1233",name:"兔子粪便",type:"湿垃圾",count:"751"},{id:"1234",name:"桃子皮",type:"湿垃圾",count:"1385"},{id:"1295",name:"午餐肉",type:"湿垃圾",count:"731"},{id:"1296",name:"豌豆皮",type:"湿垃圾",count:"219"},{id:"1297",name:"味精",type:"湿垃圾",count:"146"},{id:"1298",name:"蚊子",type:"湿垃圾",count:"319"},{id:"1344",name:"虾",type:"湿垃圾",count:"613"},{id:"1345",name:"象拔蚌",type:"湿垃圾",count:"108"},{id:"1346",name:"咸菜",type:"湿垃圾",count:"481"},{id:"1347",name:"西餐糕点",type:"湿垃圾",count:"108"},{id:"1348",name:"咸蛋",type:"湿垃圾",count:"223"},{id:"1349",name:"咸蛋黄",type:"湿垃圾",count:"274"},{id:"1350",name:"咸蛋壳",type:"湿垃圾",count:"3979"},{id:"1351",name:"香榧子壳",type:"湿垃圾",count:"332"},{id:"1352",name:"香菇",type:"湿垃圾",count:"232"},{id:"1353",name:"吸管可降解纸质包装",type:"湿垃圾",count:"4375"},{id:"1354",name:"西瓜皮",type:"湿垃圾",count:"4419"},{id:"1355",name:"香瓜皮",type:"湿垃圾",count:"446"},{id:"1356",name:"香瓜子",type:"湿垃圾",count:"1976"},{id:"1357",name:"西瓜籽",type:"湿垃圾",count:"2160"},{id:"1358",name:"西瓜子",type:"湿垃圾",count:"3902"},{id:"1359",name:"鲜花",type:"湿垃圾",count:"1164"},{id:"1360",name:"杏和",type:"湿垃圾",count:"121"},{id:"1361",name:"西红柿",type:"湿垃圾",count:"161"},{id:"1362",name:"小核桃肉",type:"湿垃圾",count:"3936"},{id:"1363",name:"香蕉",type:"湿垃圾",count:"819"},{id:"1364",name:"香蕉皮",type:"湿垃圾",count:"3258"},{id:"1365",name:"虾壳",type:"湿垃圾",count:"2291"},{id:"1366",name:"西兰花",type:"湿垃圾",count:"791"},{id:"1367",name:"西兰花梗",type:"湿垃圾",count:"803"},{id:"1368",name:"小龙虾",type:"湿垃圾",count:"8384"},{id:"1369",name:"小龙虾黄",type:"湿垃圾",count:"6403"},{id:"1370",name:"小龙虾壳",type:"湿垃圾",count:"10541"},{id:"1371",name:"小龙虾肉",type:"湿垃圾",count:"7061"},{id:"1372",name:"小龙虾头",type:"湿垃圾",count:"7017"},{id:"1373",name:"小米",type:"湿垃圾",count:"253"},{id:"1374",name:"杏仁",type:"湿垃圾",count:"155"},{id:"1375",name:"蟹肉",type:"湿垃圾",count:"967"},{id:"1376",name:"虾肉",type:"湿垃圾",count:"1244"},{id:"1462",name:"盐",type:"湿垃圾",count:"136"},{id:"1463",name:"鸭脖",type:"湿垃圾",count:"211"},{id:"1464",name:"鱼刺",type:"湿垃圾",count:"1351"},{id:"1465",name:"鸭翅",type:"湿垃圾",count:"135"},{id:"1466",name:"洋葱皮",type:"湿垃圾",count:"289"},{id:"1467",name:"鸭蛋壳",type:"湿垃圾",count:"4017"},{id:"1468",name:"椰果",type:"湿垃圾",count:"165"},{id:"1469",name:"腰果",type:"湿垃圾",count:"121"},{id:"1470",name:"鱼骨头",type:"湿垃圾",count:"8282"},{id:"1471",name:"鸭骨头",type:"湿垃圾",count:"5450"},{id:"1472",name:"鸭架",type:"湿垃圾",count:"138"},{id:"1473",name:"鱼鳞",type:"湿垃圾",count:"909"},{id:"1474",name:"燕麦",type:"湿垃圾",count:"104"},{id:"1475",name:"玉米棒",type:"湿垃圾",count:"5295"},{id:"1476",name:"杨梅核",type:"湿垃圾",count:"2900"},{id:"1477",name:"玉米猫砂",type:"湿垃圾",count:"6542"},{id:"1478",name:"燕麦片",type:"湿垃圾",count:"140"},{id:"1479",name:"玉米须",type:"湿垃圾",count:"3387"},{id:"1480",name:"玉米芯",type:"湿垃圾",count:"3737"},{id:"1481",name:"鱼内脏",type:"湿垃圾",count:"925"},{id:"1482",name:"鱼皮花生",type:"湿垃圾",count:"1940"},{id:"1483",name:"鸭肉",type:"湿垃圾",count:"761"},{id:"1484",name:"鱼肉",type:"湿垃圾",count:"1501"},{id:"1485",name:"椰肉",type:"湿垃圾",count:"741"},{id:"1486",name:"压缩饼干",type:"湿垃圾",count:"733"},{id:"1487",name:"盐水花生",type:"湿垃圾",count:"1804"},{id:"1488",name:"盐水花生壳",type:"湿垃圾",count:"3385"},{id:"1489",name:"鸭腿",type:"湿垃圾",count:"145"},{id:"1490",name:"油桃",type:"湿垃圾",count:"560"},{id:"1491",name:"樱桃干",type:"湿垃圾",count:"544"},{id:"1492",name:"樱桃梗",type:"湿垃圾",count:"532"},{id:"1493",name:"樱桃核",type:"湿垃圾",count:"5002"},{id:"1494",name:"鱼虾",type:"湿垃圾",count:"1342"},{id:"1495",name:"油烟机油脂",type:"湿垃圾",count:"746"},{id:"1496",name:"鸭爪",type:"湿垃圾",count:"135"},{id:"1497",name:"柚子皮",type:"湿垃圾",count:"267"},{id:"1498",name:"柚子核",type:"湿垃圾",count:"576"},{id:"1624",name:"杂菜",type:"湿垃圾",count:"462"},{id:"1625",name:"杂草",type:"湿垃圾",count:"247"},{id:"1626",name:"粥",type:"湿垃圾",count:"225"},{id:"1627",name:"枣核",type:"湿垃圾",count:"919"},{id:"1628",name:"榨菜",type:"湿垃圾",count:"483"},{id:"1629",name:"炸鸡",type:"湿垃圾",count:"426"},{id:"1630",name:"蟑螂",type:"湿垃圾",count:"1374"},{id:"1631",name:"芝麻",type:"湿垃圾",count:"124"},{id:"1632",name:"芝麻酱",type:"湿垃圾",count:"149"},{id:"1633",name:"竹笋",type:"湿垃圾",count:"127"},{id:"1634",name:"芝士",type:"湿垃圾",count:"98"},{id:"1635",name:"猪蹄",type:"湿垃圾",count:"747"},{id:"1636",name:"(小)猪骨",type:"湿垃圾",count:"1250"},{id:"1637",name:"中药包",type:"湿垃圾",count:"1457"},{id:"1638",name:"孜然粉",type:"湿垃圾",count:"115"},{id:"1639",name:"紫薯皮",type:"湿垃圾",count:"214"},{id:"1640",name:"植物枝干",type:"湿垃圾",count:"389"},{id:"1641",name:"中药渣",type:"湿垃圾",count:"2049"},{id:"1642",name:"粽子馅",type:"湿垃圾",count:"931"},{id:"1643",name:"纸质吸管",type:"湿垃圾",count:"4004"},{id:"11",name:"安神补脑液瓶",type:"有害垃圾",count:"290"},{id:"115",name:"笔记本电脑电池",type:"有害垃圾",count:"8538"},{id:"116",name:"保健品",type:"有害垃圾",count:"159"},{id:"117",name:"保健品瓶子",type:"有害垃圾",count:"1047"},{id:"118",name:"板蓝根冲剂",type:"有害垃圾",count:"117"},{id:"119",name:"玻璃药瓶",type:"有害垃圾",count:"3866"},{id:"200",name:"充电电池",type:"有害垃圾",count:"6768"},{id:"201",name:"除渍剂",type:"有害垃圾",count:"96"},{id:"296",name:"冻干粉",type:"有害垃圾",count:"148"},{id:"297",name:"灯泡",type:"有害垃圾",count:"738"},{id:"298",name:"调色板",type:"有害垃圾",count:"109"},{id:"299",name:"打印机墨盒",type:"有害垃圾",count:"323"},{id:"300",name:"打印机色带",type:"有害垃圾",count:"151"},{id:"362",name:"废节能灯",type:"有害垃圾",count:"294"},{id:"363",name:"废旧小家电",type:"有害垃圾",count:"185"},{id:"364",name:"废矿物油",type:"有害垃圾",count:"331"},{id:"365",name:"废镍铬电池",type:"有害垃圾",count:"6747"},{id:"366",name:"废农药",type:"有害垃圾",count:"982"},{id:"367",name:"废弃灯泡",type:"有害垃圾",count:"746"},{id:"368",name:"废弃药瓶",type:"有害垃圾",count:"1696"},{id:"369",name:"废水银温度计",type:"有害垃圾",count:"976"},{id:"370",name:"废水银血压计",type:"有害垃圾",count:"971"},{id:"371",name:"废荧光灯管",type:"有害垃圾",count:"498"},{id:"372",name:"废油漆",type:"有害垃圾",count:"473"},{id:"447",name:"感光胶片",type:"有害垃圾",count:"130"},{id:"448",name:"感冒药",type:"有害垃圾",count:"979"},{id:"449",name:"钙片",type:"有害垃圾",count:"113"},{id:"450",name:"过期的胶囊药物",type:"有害垃圾",count:"1134"},{id:"451",name:"过期感冒药",type:"有害垃圾",count:"1065"},{id:"452",name:"过期西药",type:"有害垃圾",count:"999"},{id:"453",name:"过期药品",type:"有害垃圾",count:"1816"},{id:"454",name:"过期药片",type:"有害垃圾",count:"1282"},{id:"455",name:"过期指甲油",type:"有害垃圾",count:"2852"},{id:"456",name:"膏药",type:"有害垃圾",count:"1055"},{id:"457",name:"给药器",type:"有害垃圾",count:"917"},{id:"458",name:"工业胶水",type:"有害垃圾",count:"992"},{id:"661",name:"洁厕剂",type:"有害垃圾",count:"105"},{id:"662",name:"胶合剂",type:"有害垃圾",count:"111"},{id:"663",name:"酒精",type:"有害垃圾",count:"373"},{id:"664",name:"胶卷底片",type:"有害垃圾",count:"150"},{id:"665",name:"胶囊",type:"有害垃圾",count:"185"},{id:"666",name:"节能灯(含水银)",type:"有害垃圾",count:"998"},{id:"667",name:"胶片",type:"有害垃圾",count:"125"},{id:"712",name:"开塞露",type:"有害垃圾",count:"190"},{id:"713",name:"咳嗽药水瓶",type:"有害垃圾",count:"2197"},{id:"714",name:"空调清洗消毒液瓶",type:"有害垃圾",count:"478"},{id:"715",name:"空药瓶",type:"有害垃圾",count:"1762"},{id:"781",name:"LED灯(含水银)",type:"有害垃圾",count:"928"},{id:"782",name:"锂电池",type:"有害垃圾",count:"6818"},{id:"783",name:"雷达瓶子",type:"有害垃圾",count:"973"},{id:"784",name:"卤素灯",type:"有害垃圾",count:"179"},{id:"785",name:"老鼠药",type:"有害垃圾",count:"1578"},{id:"786",name:"录像带",type:"有害垃圾",count:"104"},{id:"871",name:"煤气罐",type:"有害垃圾",count:"172"},{id:"924",name:"镍铬电池",type:"有害垃圾",count:"6743"},{id:"925",name:"农药瓶",type:"有害垃圾",count:"1764"},{id:"1013",name:"清洁剂",type:"有害垃圾",count:"112"},{id:"1014",name:"铅酸电池",type:"有害垃圾",count:"6755"},{id:"1029",name:"染发膏",type:"有害垃圾",count:"173"},{id:"1030",name:"染发剂",type:"有害垃圾",count:"225"},{id:"1031",name:"染发剂壳",type:"有害垃圾",count:"535"},{id:"1032",name:"染发手套",type:"有害垃圾",count:"418"},{id:"1033",name:"日光灯",type:"有害垃圾",count:"207"},{id:"1213",name:"杀虫剂",type:"有害垃圾",count:"249"},{id:"1214",name:"杀虫剂罐",type:"有害垃圾",count:"291"},{id:"1215",name:"杀虫喷雾",type:"有害垃圾",count:"222"},{id:"1216",name:"伤筋膏药",type:"有害垃圾",count:"1089"},{id:"1217",name:"药膏包装",type:"有害垃圾",count:"1388"},{id:"1218",name:"水银体温计",type:"有害垃圾",count:"823"},{id:"1219",name:"树脂",type:"有害垃圾",count:"140"},{id:"1220",name:"手机电池",type:"有害垃圾",count:"9172"},{id:"1221",name:"松节油",type:"有害垃圾",count:"332"},{id:"1222",name:"塑料药盒",type:"有害垃圾",count:"3201"},{id:"1223",name:"塑料药瓶",type:"有害垃圾",count:"3599"},{id:"1224",name:"生石灰",type:"有害垃圾",count:"280"},{id:"1293",name:"烫伤膏",type:"有害垃圾",count:"100"},{id:"1453",name:"X光片",type:"有害垃圾",count:"423"},{id:"1454",name:"蓄电池",type:"有害垃圾",count:"6777"},{id:"1455",name:"硒鼓",type:"有害垃圾",count:"184"},{id:"1456",name:"卸甲膜",type:"有害垃圾",count:"114"},{id:"1457",name:"卸甲水",type:"有害垃圾",count:"750"},{id:"1458",name:"相片底片",type:"有害垃圾",count:"115"},{id:"1459",name:"西药",type:"有害垃圾",count:"936"},{id:"1460",name:"西药瓶",type:"有害垃圾",count:"1713"},{id:"1461",name:"消毒剂",type:"有害垃圾",count:"125"},{id:"1604",name:"药包装",type:"有害垃圾",count:"1341"},{id:"1605",name:"一次性注射器",type:"有害垃圾",count:"362"},{id:"1606",name:"药膏",type:"有害垃圾",count:"1032"},{id:"1607",name:"药膏包装壳",type:"有害垃圾",count:"1586"},{id:"1608",name:"荧光灯",type:"有害垃圾",count:"345"},{id:"1609",name:"氧化汞电池",type:"有害垃圾",count:"6768"},{id:"1610",name:"药剂",type:"有害垃圾",count:"918"},{id:"1611",name:"药瓶",type:"有害垃圾",count:"1686"},{id:"1612",name:"药片包装",type:"有害垃圾",count:"1469"},{id:"1613",name:"药品包装袋",type:"有害垃圾",count:"2939"},{id:"1614",name:"药品纸盒",type:"有害垃圾",count:"4497"},{id:"1615",name:"油漆笔",type:"有害垃圾",count:"944"},{id:"1616",name:"油漆桶",type:"有害垃圾",count:"642"},{id:"1617",name:"药水玻璃瓶",type:"有害垃圾",count:"5937"},{id:"1618",name:"医用棉签",type:"有害垃圾",count:"921"},{id:"1619",name:"医用纱布",type:"有害垃圾",count:"419"},{id:"1620",name:"眼药水",type:"有害垃圾",count:"1686"},{id:"1621",name:"眼药水瓶",type:"有害垃圾",count:"2301"},{id:"1622",name:"医用手套",type:"有害垃圾",count:"414"},{id:"1623",name:"医用针管",type:"有害垃圾",count:"287"},{id:"1736",name:"注射器",type:"有害垃圾",count:"183"},{id:"1730",name:"指甲油瓶子",type:"有害垃圾",count:"3638"},{id:"1728",name:"中草药",type:"有害垃圾",count:"1081"},{id:"1729",name:"针管",type:"有害垃圾",count:"274"},{id:"1731",name:"蟑螂药",type:"有害垃圾",count:"2217"},{id:"1732",name:"针头",type:"有害垃圾",count:"434"},{id:"1733",name:"针筒",type:"有害垃圾",count:"324"},{id:"1734",name:"止痛膏",type:"有害垃圾",count:"101"},{id:"1735",name:"纸药盒",type:"有害垃圾",count:"3511"},{id:"1737",name:"餐巾纸",type:"干垃圾",count:"6066"},{id:"1692",name:"脏纸尿裤",type:"干垃圾",count:"3472"},{id:"1691",name:"脏纸巾",type:"干垃圾",count:"6347"},{id:"1690",name:"粽子包裹绳",type:"干垃圾",count:"1140"},{id:"1685",name:"装修废弃物",type:"干垃圾",count:"114"},{id:"1688",name:"纸质包装袋",type:"干垃圾",count:"3531"},{id:"1687",name:"粽叶",type:"干垃圾",count:"3190"},{id:"1689",name:"中药袋",type:"干垃圾",count:"1361"},{id:"1686",name:"脏卸妆棉",type:"干垃圾",count:"304"},{id:"1684",name:"植物硬壳",type:"干垃圾",count:"548"},{id:"1683",name:"脏污衣物",type:"干垃圾",count:"237"},{id:"1682",name:"砖瓦陶瓷",type:"干垃圾",count:"457"},{id:"1681",name:"脏卫生巾",type:"干垃圾",count:"8332"},{id:"2",name:"1号电池(无汞)",type:"干垃圾",count:"6904"},{id:"3",name:"5号电池(无汞)",type:"干垃圾",count:"6835"},{id:"4",name:"7号电池(无汞)",type:"干垃圾",count:"6795"},{id:"5",name:"A4纸包装袋",type:"干垃圾",count:"3750"},{id:"6",name:"艾灸条",type:"干垃圾",count:"123"},{id:"7",name:"艾灸贴",type:"干垃圾",count:"134"},{id:"8",name:"安全套包装纸",type:"干垃圾",count:"3248"},{id:"9",name:"安全套",type:"干垃圾",count:"482"},{id:"13",name:"棒棒糖棒子",type:"干垃圾",count:"350"},{id:"14",name:"棒棒糖塑料包装袋",type:"干垃圾",count:"4011"},{id:"34",name:"白板笔",type:"干垃圾",count:"619"},{id:"35",name:"冰棒皮",type:"干垃圾",count:"284"},{id:"36",name:"冰棒棍",type:"干垃圾",count:"227"},{id:"37",name:"棒冰棍",type:"干垃圾",count:"343"},{id:"38",name:"冰宝贴",type:"干垃圾",count:"151"},{id:"39",name:"冰棒外包装",type:"干垃圾",count:"571"},{id:"40",name:"冰袋",type:"干垃圾",count:"415"},{id:"41",name:"笔袋",type:"干垃圾",count:"678"},{id:"42",name:"棒骨",type:"干垃圾",count:"239"},{id:"43",name:"饼干包装袋",type:"干垃圾",count:"2027"},{id:"44",name:"包狗屎的报纸",type:"干垃圾",count:"15185"},{id:"45",name:"包狗屎的塑料袋",type:"干垃圾",count:"21476"},{id:"46",name:"包狗屎的纸巾",type:"干垃圾",count:"21142"},{id:"47",name:"鼻涕纸",type:"干垃圾",count:"3143"},{id:"48",name:"包裹着口香糖的纸巾",type:"干垃圾",count:"8351"},{id:"49",name:"包猫屎的塑料袋",type:"干垃圾",count:"15944"},{id:"50",name:"包裹着痰的纸巾",type:"干垃圾",count:"7040"},{id:"51",name:"贝壳",type:"干垃圾",count:"1683"},{id:"52",name:"玻璃胶",type:"干垃圾",count:"2272"},{id:"53",name:"保冷剂",type:"干垃圾",count:"99"},{id:"54",name:"便利贴",type:"干垃圾",count:"133"},{id:"55",name:"鞭炮",type:"干垃圾",count:"120"},{id:"56",name:"标签",type:"干垃圾",count:"151"},{id:"57",name:"冰淇淋包装袋",type:"干垃圾",count:"1618"},{id:"58",name:"碧然德过滤芯",type:"干垃圾",count:"214"},{id:"59",name:"鼻屎",type:"干垃圾",count:"3898"},{id:"60",name:"冰贴",type:"干垃圾",count:"136"},{id:"61",name:"鼻贴",type:"干垃圾",count:"115"},{id:"62",name:"被污染的垃圾袋",type:"干垃圾",count:"1802"},{id:"63",name:"保鲜袋",type:"干垃圾",count:"411"},{id:"64",name:"冰箱贴",type:"干垃圾",count:"231"},{id:"65",name:"鲍鱼壳",type:"干垃圾",count:"1104"},{id:"66",name:"避孕套",type:"干垃圾",count:"10377"},{id:"67",name:"被油污污染过的报纸",type:"干垃圾",count:"3457"},{id:"68",name:"杯子",type:"干垃圾",count:"481"},{id:"69",name:"爆竹",type:"干垃圾",count:"112"},{id:"70",name:"别针",type:"干垃圾",count:"255"},{id:"71",name:"壁纸",type:"干垃圾",count:"2270"},{id:"72",name:"便纸",type:"干垃圾",count:"2310"},{id:"73",name:"编织袋",type:"干垃圾",count:"198"},{id:"74",name:"包裹着鼻屎的纸巾",type:"干垃圾",count:"10281"},{id:"141",name:"菜板",type:"干垃圾",count:"488"},{id:"142",name:"茶包",type:"干垃圾",count:"821"},{id:"143",name:"醋包",type:"干垃圾",count:"328"},{id:"144",name:"磁带",type:"干垃圾",count:"165"},{id:"145",name:"醋袋",type:"干垃圾",count:"204"},{id:"146",name:"擦过鼻涕的纸",type:"干垃圾",count:"2947"},{id:"147",name:"草稿纸",type:"干垃圾",count:"2529"},{id:"148",name:"尺",type:"干垃圾",count:"109"},{id:"149",name:"成分复杂的制品",type:"干垃圾",count:"94"},{id:"150",name:"厨房手套",type:"干垃圾",count:"453"},{id:"151",name:"厨房用纸",type:"干垃圾",count:"2379"},{id:"152",name:"茶壶",type:"干垃圾",count:"183"},{id:"153",name:"储奶袋",type:"干垃圾",count:"243"},{id:"154",name:"成人用品",type:"干垃圾",count:"2833"},{id:"155",name:"除湿袋",type:"干垃圾",count:"348"},{id:"156",name:"除湿盒",type:"干垃圾",count:"257"},{id:"157",name:"除湿剂",type:"干垃圾",count:"240"},{id:"158",name:"宠物饲料包装袋",type:"干垃圾",count:"1497"},{id:"159",name:"唇釉",type:"干垃圾",count:"109"},{id:"160",name:"茶叶包",type:"干垃圾",count:"2796"},{id:"161",name:"抽纸饲料袋",type:"干垃圾",count:"2396"},{id:"162",name:"创可贴",type:"干垃圾",count:"601"},{id:"163",name:"草木灰",type:"干垃圾",count:"358"},{id:"164",name:"彩泥",type:"干垃圾",count:"136"},{id:"165",name:"瓷器碎片",type:"干垃圾",count:"217"},{id:"166",name:"仓鼠沙垫",type:"干垃圾",count:"168"},{id:"167",name:"碎瓷片",type:"干垃圾",count:"140"},{id:"168",name:"擦碗布",type:"干垃圾",count:"793"},{id:"169",name:"宠物毛",type:"干垃圾",count:"259"},{id:"170",name:"草席",type:"干垃圾",count:"249"},{id:"171",name:"测血糖针",type:"干垃圾",count:"515"},{id:"172",name:"餐饮外卖盒",type:"干垃圾",count:"3995"},{id:"173",name:"草纸",type:"干垃圾",count:"2682"},{id:"174",name:"彩妆",type:"干垃圾",count:"95"},{id:"175",name:"蛏子壳",type:"干垃圾",count:"466"},{id:"176",name:"盛放厨余果皮的垃圾袋",type:"干垃圾",count:"3168"},{id:"209",name:"蛋糕袋",type:"干垃圾",count:"658"},{id:"210",name:"蛋糕盒",type:"干垃圾",count:"696"},{id:"232",name:"动物毛",type:"干垃圾",count:"287"},{id:"233",name:"打包盒",type:"干垃圾",count:"677"},{id:"234",name:"地板蜡",type:"干垃圾",count:"131"},{id:"235",name:"稻草",type:"干垃圾",count:"250"},{id:"236",name:"痘痘贴",type:"干垃圾",count:"111"},{id:"237",name:"电动牙刷刷头",type:"干垃圾",count:"965"},{id:"238",name:"豆腐盒",type:"干垃圾",count:"305"},{id:"239",name:"蛋糕袋",type:"干垃圾",count:"658"},{id:"240",name:"蛋糕盒",type:"干垃圾",count:"696"},{id:"241",name:"打火机",type:"干垃圾",count:"2100"},{id:"242",name:"电话卡",type:"干垃圾",count:"219"},{id:"243",name:"蛋黄酥包装盒",type:"干垃圾",count:"1061"},{id:"244",name:"豆浆杯",type:"干垃圾",count:"319"},{id:"245",name:"豆浆袋",type:"干垃圾",count:"319"},{id:"246",name:"带胶制品",type:"干垃圾",count:"110"},{id:"247",name:"大块骨头",type:"干垃圾",count:"5262"},{id:"248",name:"地漏是咖啡",type:"干垃圾",count:"574"},{id:"249",name:"大龙虾壳",type:"干垃圾",count:"5925"},{id:"250",name:"逗猫棒",type:"干垃圾",count:"676"},{id:"251",name:"大米袋",type:"干垃圾",count:"453"},{id:"252",name:"吊牌",type:"干垃圾",count:"142"},{id:"253",name:"碟片",type:"干垃圾",count:"159"},{id:"254",name:"袋泡茶",type:"干垃圾",count:"336"},{id:"255",name:"订书机钉",type:"干垃圾",count:"754"},{id:"256",name:"订书针",type:"干垃圾",count:"873"},{id:"257",name:"大头针",type:"干垃圾",count:"319"},{id:"258",name:"电蚊香片",type:"干垃圾",count:"753"},{id:"259",name:"电蚊香液瓶",type:"干垃圾",count:"573"},{id:"260",name:"带有婴儿粪便的尿不湿",type:"干垃圾",count:"3225"},{id:"261",name:"带有婴儿粪便的纸尿裤",type:"干垃圾",count:"4050"},{id:"262",name:"电子烟烟弹",type:"干垃圾",count:"501"},{id:"263",name:"帝王蟹壳",type:"干垃圾",count:"2720"},{id:"302",name:"鹅毛",type:"干垃圾",count:"221"},{id:"303",name:"耳塞",type:"干垃圾",count:"102"},{id:"304",name:"耳屎",type:"干垃圾",count:"3180"},{id:"310",name:"方便面盒",type:"干垃圾",count:"871"},{id:"311",name:"方便面桶",type:"干垃圾",count:"831"},{id:"312",name:"方便面调味包",type:"干垃圾",count:"952"},{id:"321",name:"粉饼",type:"干垃圾",count:"188"},{id:"322",name:"粉笔",type:"干垃圾",count:"656"},{id:"323",name:"粉饼盒",type:"干垃圾",count:"247"},{id:"324",name:"粉尘",type:"干垃圾",count:"126"},{id:"325",name:"粉底",type:"干垃圾",count:"169"},{id:"326",name:"发带",type:"干垃圾",count:"102"},{id:"327",name:"粉底液",type:"干垃圾",count:"322"},{id:"328",name:"防腐剂",type:"干垃圾",count:"172"},{id:"329",name:"发箍",type:"干垃圾",count:"115"},{id:"330",name:"发胶",type:"干垃圾",count:"160"},{id:"331",name:"发夹",type:"干垃圾",count:"139"},{id:"332",name:"防腐防蛀片",type:"干垃圾",count:"97"},{id:"333",name:"发票",type:"干垃圾",count:"157"},{id:"334",name:"粉扑",type:"干垃圾",count:"124"},{id:"335",name:"废弃的纸张",type:"干垃圾",count:"2496"},{id:"336",name:"番茄酱包装袋",type:"干垃圾",count:"1704"},{id:"337",name:"废弃食品袋",type:"干垃圾",count:"368"},{id:"338",name:"发热包",type:"干垃圾",count:"287"},{id:"339",name:"防晒喷雾",type:"干垃圾",count:"263"},{id:"340",name:"防晒霜",type:"干垃圾",count:"198"},{id:"341",name:"防摔气泡膜",type:"干垃圾",count:"176"},{id:"342",name:"封箱带",type:"干垃圾",count:"135"},{id:"343",name:"风油精",type:"干垃圾",count:"417"},{id:"344",name:"肥皂",type:"干垃圾",count:"392"},{id:"345",name:"废纸",type:"干垃圾",count:"2873"},{id:"400",name:"干冰",type:"干垃圾",count:"250"},{id:"401",name:"钢笔",type:"干垃圾",count:"705"},{id:"402",name:"干草",type:"干垃圾",count:"278"},{id:"403",name:"干电池(无汞)",type:"干垃圾",count:"7105"},{id:"404",name:"挂耳咖啡",type:"干垃圾",count:"657"},{id:"405",name:"干发巾",type:"干垃圾",count:"129"},{id:"406",name:"广告颜料",type:"干垃圾",count:"177"},{id:"407",name:"干花",type:"干垃圾",count:"917"},{id:"408",name:"硅胶猫砂",type:"干垃圾",count:"3553"},{id:"409",name:"干净无油食品包装袋",type:"干垃圾",count:"2057"},{id:"410",name:"过滤网",type:"干垃圾",count:"133"},{id:"411",name:"百洁布",type:"干垃圾",count:"328"},{id:"412",name:"蛤蜊壳",type:"干垃圾",count:"987"},{id:"413",name:"狗毛",type:"干垃圾",count:"1438"},{id:"414",name:"高密度碎纸机处理的碎纸",type:"干垃圾",count:"2425"},{id:"415",name:"狗尿垫",type:"干垃圾",count:"1502"},{id:"416",name:"光盘",type:"干垃圾",count:"283"},{id:"417",name:"过期防晒霜",type:"干垃圾",count:"262"},{id:"418",name:"过期护肤品",type:"干垃圾",count:"378"},{id:"419",name:"过期化妆品",type:"干垃圾",count:"2350"},{id:"420",name:"过期口红",type:"干垃圾",count:"1346"},{id:"421" 3 | ,name:"钢丝球",type:"干垃圾",count:"247"},{id:"422",name:"固体胶",type:"干垃圾",count:"157"},{id:"423",name:"购物卡",type:"干垃圾",count:"143"},{id:"424",name:"干燥剂",type:"干垃圾",count:"740"},{id:"425",name:"硅藻泥",type:"干垃圾",count:"127"},{id:"426",name:"过滤盒",type:"干垃圾",count:"145"},{id:"427",name:"过滤器",type:"干垃圾",count:"106"},{id:"428",name:"过滤芯",type:"干垃圾",count:"211"},{id:"492",name:"核桃壳",type:"干垃圾",count:"4021"},{id:"503",name:"画笔",type:"干垃圾",count:"619"},{id:"504",name:"红笔",type:"干垃圾",count:"597"},{id:"505",name:"河蚌壳",type:"干垃圾",count:"316"},{id:"506",name:"灰尘",type:"干垃圾",count:"656"},{id:"507",name:"火柴",type:"干垃圾",count:"147"},{id:"508",name:"坏掉的花盆",type:"干垃圾",count:"962"},{id:"509",name:"护发精油",type:"干垃圾",count:"412"},{id:"510",name:"红酒塞",type:"干垃圾",count:"218"},{id:"511",name:"护理垫",type:"干垃圾",count:"97"},{id:"512",name:"海螺壳",type:"干垃圾",count:"405"},{id:"513",name:"海绵",type:"干垃圾",count:"264"},{id:"514",name:"海绵蛋",type:"干垃圾",count:"377"},{id:"515",name:"海绵粉扑",type:"干垃圾",count:"297"},{id:"516",name:"话梅核",type:"干垃圾",count:"1176"},{id:"517",name:"坏马桶",type:"干垃圾",count:"306"},{id:"518",name:"花泥",type:"干垃圾",count:"840"},{id:"519",name:"花盆",type:"干垃圾",count:"955"},{id:"520",name:"烘焙纸",type:"干垃圾",count:"2270"},{id:"521",name:"护手霜",type:"干垃圾",count:"246"},{id:"522",name:"灰土",type:"干垃圾",count:"535"},{id:"523",name:"火腿肠包装纸",type:"干垃圾",count:"2973"},{id:"524",name:"胡须",type:"干垃圾",count:"112"},{id:"525",name:"活性炭",type:"干垃圾",count:"131"},{id:"526",name:"回形针",type:"干垃圾",count:"949"},{id:"527",name:"黄油包装纸",type:"干垃圾",count:"3103"},{id:"528",name:"徽章",type:"干垃圾",count:"100"},{id:"529",name:"化妆棉",type:"干垃圾",count:"690"},{id:"530",name:"化妆刷",type:"干垃圾",count:"197"},{id:"531",name:"喝过的奶茶杯子",type:"干垃圾",count:"7307"},{id:"532",name:"花蛤",type:"干垃圾",count:"962"},{id:"579",name:"胶带",type:"干垃圾",count:"391"},{id:"580",name:"胶带纸",type:"干垃圾",count:"2581"},{id:"581",name:"假发",type:"干垃圾",count:"144"},{id:"582",name:"坚果壳",type:"干垃圾",count:"1007"},{id:"583",name:"浆糊",type:"干垃圾",count:"100"},{id:"584",name:"胶画",type:"干垃圾",count:"125"},{id:"585",name:"记号笔",type:"干垃圾",count:"608"},{id:"586",name:"净化器滤芯",type:"干垃圾",count:"200"},{id:"587",name:"假睫毛",type:"干垃圾",count:"242"},{id:"588",name:"酒精棉花",type:"干垃圾",count:"1357"},{id:"589",name:"寄居蟹",type:"干垃圾",count:"340"},{id:"590",name:"旧镜子",type:"干垃圾",count:"334"},{id:"591",name:"鸡毛",type:"干垃圾",count:"669"},{id:"592",name:"睫毛膏",type:"干垃圾",count:"273"},{id:"593",name:"旧毛巾",type:"干垃圾",count:"1169"},{id:"594",name:"洁面慕斯",type:"干垃圾",count:"172"},{id:"595",name:"胶囊咖啡",type:"干垃圾",count:"793"},{id:"596",name:"旧内衣",type:"干垃圾",count:"374"},{id:"597",name:"脚皮",type:"干垃圾",count:"370"},{id:"598",name:"金属",type:"干垃圾",count:"269"},{id:"599",name:"旧水槽",type:"干垃圾",count:"751"},{id:"600",name:"胶水",type:"干垃圾",count:"985"},{id:"601",name:"卷纸筒",type:"干垃圾",count:"2292"},{id:"602",name:"卷纸筒外包装",type:"干垃圾",count:"2670"},{id:"603",name:"碱性电池",type:"干垃圾",count:"6765"},{id:"604",name:"酱油袋",type:"干垃圾",count:"485"},{id:"605",name:"甲鱼壳",type:"干垃圾",count:"1143"},{id:"606",name:"旧浴缸",type:"干垃圾",count:"170"},{id:"607",name:"镜子",type:"干垃圾",count:"326"},{id:"608",name:"胶纸",type:"干垃圾",count:"2280"},{id:"609",name:"脚指甲",type:"干垃圾",count:"2244"},{id:"679",name:"KFC食物包装",type:"干垃圾",count:"701"},{id:"680",name:"KFC纸盒",type:"干垃圾",count:"3251"},{id:"681",name:"快餐盒",type:"干垃圾",count:"869"},{id:"682",name:"快递包装袋",type:"干垃圾",count:"1931"},{id:"683",name:"快递单",type:"干垃圾",count:"514"},{id:"684",name:"咖啡杯杯盖",type:"干垃圾",count:"912"},{id:"685",name:"咖啡胶囊",type:"干垃圾",count:"759"},{id:"686",name:"咖啡滤纸",type:"干垃圾",count:"2787"},{id:"687",name:"口红",type:"干垃圾",count:"1266"},{id:"688",name:"空气清新剂罐",type:"干垃圾",count:"174"},{id:"689",name:"空调滤芯",type:"干垃圾",count:"319"},{id:"690",name:"枯萎花草",type:"干垃圾",count:"1006"},{id:"691",name:"开心果壳",type:"干垃圾",count:"970"},{id:"692",name:"口香糖",type:"干垃圾",count:"2708"},{id:"693",name:"筷子",type:"干垃圾",count:"876"},{id:"739",name:"蜡笔",type:"干垃圾",count:"664"},{id:"740",name:"滤尘袋",type:"干垃圾",count:"157"},{id:"741",name:"滤挂咖啡",type:"干垃圾",count:"570"},{id:"742",name:"垃圾袋",type:"干垃圾",count:"1791"},{id:"743",name:"拉链",type:"干垃圾",count:"106"},{id:"744",name:"榴莲壳",type:"干垃圾",count:"1950"},{id:"745",name:"篮球",type:"干垃圾",count:"205"},{id:"746",name:"炼乳壳",type:"干垃圾",count:"285"},{id:"747",name:"零食包装袋",type:"干垃圾",count:"1661"},{id:"748",name:"辣条包装袋",type:"干垃圾",count:"1507"},{id:"749",name:"凉席",type:"干垃圾",count:"147"},{id:"750",name:"滤芯",type:"干垃圾",count:"188"},{id:"751",name:"柳絮",type:"干垃圾",count:"94"},{id:"752",name:"冷饮棒",type:"干垃圾",count:"311"},{id:"753",name:"冷饮包装",type:"干垃圾",count:"619"},{id:"754",name:"蜡烛",type:"干垃圾",count:"245"},{id:"755",name:"滤纸",type:"干垃圾",count:"2272"},{id:"756",name:"炉渣",type:"干垃圾",count:"104"},{id:"757",name:"蜡烛包装",type:"干垃圾",count:"601"},{id:"799",name:"抹布",type:"干垃圾",count:"653"},{id:"800",name:"棉棒",type:"干垃圾",count:"212"},{id:"801",name:"眉笔",type:"干垃圾",count:"650"},{id:"802",name:"面包袋",type:"干垃圾",count:"997"},{id:"803",name:"毛笔写过的纸",type:"干垃圾",count:"2935"},{id:"804",name:"墨胆",type:"干垃圾",count:"104"},{id:"805",name:"麦当劳纸盒",type:"干垃圾",count:"3299"},{id:"806",name:"毛发",type:"干垃圾",count:"408"},{id:"807",name:"眉粉",type:"干垃圾",count:"112"},{id:"808",name:"密封袋",type:"干垃圾",count:"165"},{id:"809",name:"面粉袋",type:"干垃圾",count:"374"},{id:"810",name:"猫罐头",type:"干垃圾",count:"1016"},{id:"811",name:"棉花",type:"干垃圾",count:"904"},{id:"812",name:"棉棒",type:"干垃圾",count:"212"},{id:"813",name:"棉球",type:"干垃圾",count:"170"},{id:"814",name:"墨镜",type:"干垃圾",count:"113"},{id:"815",name:"马夹袋",type:"干垃圾",count:"393"},{id:"816",name:"面巾纸",type:"干垃圾",count:"2410"},{id:"817",name:"马克笔",type:"干垃圾",count:"628"},{id:"818",name:"牡蛎壳",type:"干垃圾",count:"322"},{id:"819",name:"面膜",type:"干垃圾",count:"3024"},{id:"820",name:"猫毛",type:"干垃圾",count:"1003"},{id:"821",name:"面膜包装纸",type:"干垃圾",count:"5824"},{id:"822",name:"面膜外层纸",type:"干垃圾",count:"5184"},{id:"823",name:"墨囊",type:"干垃圾",count:"106"},{id:"824",name:"棉签",type:"干垃圾",count:"883"},{id:"825",name:"棉柔巾",type:"干垃圾",count:"133"},{id:"826",name:"麻绳",type:"干垃圾",count:"103"},{id:"827",name:"摩丝罐",type:"干垃圾",count:"145"},{id:"828",name:"棉绳",type:"干垃圾",count:"126"},{id:"829",name:"磨砂膏",type:"干垃圾",count:"100"},{id:"830",name:"美瞳",type:"干垃圾",count:"279"},{id:"831",name:"马桶刷",type:"干垃圾",count:"302"},{id:"832",name:"灭蚊灯",type:"干垃圾",count:"192"},{id:"833",name:"木屑",type:"干垃圾",count:"282"},{id:"834",name:"棉线",type:"干垃圾",count:"168"},{id:"835",name:"明信片",type:"干垃圾",count:"103"},{id:"836",name:"沐浴球",type:"干垃圾",count:"139"},{id:"837",name:"毛衣针",type:"干垃圾",count:"394"},{id:"838",name:"面纸",type:"干垃圾",count:"2408"},{id:"839",name:"美妆蛋",type:"干垃圾",count:"226"},{id:"840",name:"木质梳子",type:"干垃圾",count:"239"},{id:"891",name:"暖宝宝",type:"干垃圾",count:"256"},{id:"892",name:"暖宝宝贴",type:"干垃圾",count:"272"},{id:"893",name:"奶茶杯",type:"干垃圾",count:"6755"},{id:"894",name:"粘尘纸",type:"干垃圾",count:"2276"},{id:"895",name:"奶茶塑料杯",type:"干垃圾",count:"7858"},{id:"896",name:"奶茶纸杯",type:"干垃圾",count:"8413"},{id:"897",name:"尿垫",type:"干垃圾",count:"591"},{id:"898",name:"牛骨",type:"干垃圾",count:"360"},{id:"899",name:"牛骨棒",type:"干垃圾",count:"371"},{id:"900",name:"牛骨头",type:"干垃圾",count:"5595"},{id:"901",name:"纽扣",type:"干垃圾",count:"135"},{id:"902",name:"钮扣",type:"干垃圾",count:"103"},{id:"903",name:"内裤",type:"干垃圾",count:"899"},{id:"904",name:"牛肋骨",type:"干垃圾",count:"283"},{id:"905",name:"尼龙制品",type:"干垃圾",count:"125"},{id:"906",name:"黏毛滚纸",type:"干垃圾",count:"2384"},{id:"907",name:"牛奶袋",type:"干垃圾",count:"1373"},{id:"908",name:"尿片",type:"干垃圾",count:"630"},{id:"909",name:"粘鼠板",type:"干垃圾",count:"273"},{id:"910",name:"泥土",type:"干垃圾",count:"650"},{id:"911",name:"黏土",type:"干垃圾",count:"303"},{id:"912",name:"内衣",type:"干垃圾",count:"348"},{id:"913",name:"奶嘴",type:"干垃圾",count:"211"},{id:"927",name:"呕吐物纸巾",type:"干垃圾",count:"6767"},{id:"936",name:"膨化食品包装袋",type:"干垃圾",count:"1827"},{id:"945",name:"PH试纸",type:"干垃圾",count:"2293"},{id:"946",name:"平角裤",type:"干垃圾",count:"97"},{id:"947",name:"泡面袋",type:"干垃圾",count:"754"},{id:"948",name:"泡沫饭盒",type:"干垃圾",count:"1935"},{id:"949",name:"泡沫盒子",type:"干垃圾",count:"1193"},{id:"950",name:"泡面桶",type:"干垃圾",count:"767"},{id:"951",name:"乒乓球",type:"干垃圾",count:"148"},{id:"952",name:"皮皮虾壳",type:"干垃圾",count:"2458"},{id:"953",name:"膨润土猫砂",type:"干垃圾",count:"3686"},{id:"954",name:"披萨盒",type:"干垃圾",count:"237"},{id:"955",name:"葡萄酒木塞",type:"干垃圾",count:"498"},{id:"956",name:"盆子",type:"干垃圾",count:"124"},{id:"987",name:"铅笔",type:"干垃圾",count:"1030"},{id:"988",name:"铅笔屑",type:"干垃圾",count:"1078"},{id:"989",name:"铅笔芯",type:"干垃圾",count:"1405"},{id:"990",name:"青草膏",type:"干垃圾",count:"245"},{id:"991",name:"气垫膜",type:"干垃圾",count:"135"},{id:"992",name:"墙灰",type:"干垃圾",count:"181"},{id:"993",name:"去黑头鼻贴",type:"干垃圾",count:"166"},{id:"994",name:"青口贝",type:"干垃圾",count:"126"},{id:"995",name:"巧克力包装",type:"干垃圾",count:"755"},{id:"996",name:"气泡膜",type:"干垃圾",count:"173"},{id:"997",name:"气球",type:"干垃圾",count:"229"},{id:"998",name:"清扫渣土",type:"干垃圾",count:"322"},{id:"999",name:"驱蚊手环",type:"干垃圾",count:"170"},{id:"1000",name:"驱蚊香片",type:"干垃圾",count:"558"},{id:"1001",name:"琴弦",type:"干垃圾",count:"114"},{id:"1002",name:"签字笔",type:"干垃圾",count:"619"},{id:"1003",name:"墙纸",type:"干垃圾",count:"2290"},{id:"1018",name:"润唇膏",type:"干垃圾",count:"150"},{id:"1019",name:"润肤乳",type:"干垃圾",count:"98"},{id:"1020",name:"乳胶",type:"干垃圾",count:"124"},{id:"1021",name:"软木塞",type:"干垃圾",count:"170"},{id:"1022",name:"热饮杯盖",type:"干垃圾",count:"243"},{id:"1070",name:"塑料拖鞋",type:"干垃圾",count:"2915"},{id:"1071",name:"薯片盒",type:"干垃圾",count:"534"},{id:"1072",name:"扫把",type:"干垃圾",count:"122"},{id:"1073",name:"水笔",type:"干垃圾",count:"1419"},{id:"1074",name:"水彩笔",type:"干垃圾",count:"1558"},{id:"1075",name:"水彩颜料",type:"干垃圾",count:"824"},{id:"1076",name:"塑封袋",type:"干垃圾",count:"170"},{id:"1077",name:"纱布",type:"干垃圾",count:"376"},{id:"1078",name:"水笔笔芯",type:"干垃圾",count:"1774"},{id:"1079",name:"鼠标垫",type:"干垃圾",count:"415"},{id:"1080",name:"扇贝壳",type:"干垃圾",count:"1944"},{id:"1081",name:"湿厕纸",type:"干垃圾",count:"6560"},{id:"1082",name:"湿厕纸包装袋",type:"干垃圾",count:"4550"},{id:"1083",name:"石锅",type:"干垃圾",count:"276"},{id:"1084",name:"砂锅",type:"干垃圾",count:"229"},{id:"1085",name:"石膏",type:"干垃圾",count:"196"},{id:"1086",name:"水果塑料盒",type:"干垃圾",count:"4315"},{id:"1087",name:"湿灰尘",type:"干垃圾",count:"701"},{id:"1088",name:"生蚝壳",type:"干垃圾",count:"438"},{id:"1089",name:"湿海绵",type:"干垃圾",count:"316"},{id:"1090",name:"收据",type:"干垃圾",count:"100"},{id:"1091",name:"水饺包装袋",type:"干垃圾",count:"2007"},{id:"1092",name:"手机壳",type:"干垃圾",count:"2992"},{id:"1093",name:"手机膜",type:"干垃圾",count:"2576"},{id:"1094",name:"水晶猫砂",type:"干垃圾",count:"4105"},{id:"1095",name:"水晶泥",type:"干垃圾",count:"800"},{id:"1096",name:"烧烤锡纸",type:"干垃圾",count:"2721"},{id:"1097",name:"烧烤签",type:"干垃圾",count:"341"},{id:"1098",name:"湿抹布",type:"干垃圾",count:"742"},{id:"1099",name:"双面胶",type:"干垃圾",count:"216"},{id:"1100",name:"水蜜桃核",type:"干垃圾",count:"5017"},{id:"1101",name:"手帕",type:"干垃圾",count:"152"},{id:"1102",name:"食品保鲜袋",type:"干垃圾",count:"456"},{id:"1103",name:"薯片包装袋",type:"干垃圾",count:"1811"},{id:"1104",name:"薯片袋",type:"干垃圾",count:"610"},{id:"1105",name:"食品干燥剂",type:"干垃圾",count:"827"},{id:"1106",name:"食品密封袋",type:"干垃圾",count:"211"},{id:"1107",name:"食品塑料盒",type:"干垃圾",count:"3059"},{id:"1108",name:"湿塑料袋",type:"干垃圾",count:"9674"},{id:"1109",name:"湿头发",type:"干垃圾",count:"7039"},{id:"1110",name:"身体乳",type:"干垃圾",count:"107"},{id:"1111",name:"使用过的安全套",type:"干垃圾",count:"611"},{id:"1112",name:"使用过的面膜",type:"干垃圾",count:"3182"},{id:"1113",name:"使用过的卫生巾",type:"干垃圾",count:"8996"},{id:"1114",name:"双眼皮贴",type:"干垃圾",count:"211"},{id:"1115",name:"收银条",type:"干垃圾",count:"183"},{id:"1116",name:"手指甲",type:"干垃圾",count:"2437"},{id:"1117",name:"湿纸巾包装",type:"干垃圾",count:"8671"},{id:"1118",name:"手机卡",type:"干垃圾",count:"2531"},{id:"1119",name:"三角裤",type:"干垃圾",count:"107"},{id:"1120",name:"湿纸巾",type:"干垃圾",count:"8315"},{id:"1121",name:"塑料表带",type:"干垃圾",count:"1967"},{id:"1122",name:"塑料笔杆",type:"干垃圾",count:"2466"},{id:"1123",name:"塑料打包盒",type:"干垃圾",count:"2569"},{id:"1124",name:"塑料盖子",type:"干垃圾",count:"2099"},{id:"1125",name:"塑料花",type:"干垃圾",count:"2654"},{id:"1126",name:"湿垃圾袋",type:"干垃圾",count:"2506"},{id:"1127",name:"塑料咖啡杯",type:"干垃圾",count:"2678"},{id:"1128",name:"塑料垃圾袋",type:"干垃圾",count:"3652"},{id:"1129",name:"塑料勺",type:"干垃圾",count:"2030"},{id:"1130",name:"塑料外卖盒",type:"干垃圾",count:"5857"},{id:"1131",name:"塑料吸管",type:"干垃圾",count:"3754"},{id:"1132",name:"松木猫砂",type:"干垃圾",count:"3504"},{id:"1133",name:"酸奶杯盖",type:"干垃圾",count:"1746"},{id:"1134",name:"酸奶袋",type:"干垃圾",count:"1361"},{id:"1135",name:"酸奶勺",type:"干垃圾",count:"1273"},{id:"1136",name:"酸奶吸管",type:"干垃圾",count:"2981"},{id:"1137",name:"薯片罐",type:"干垃圾",count:"530"},{id:"1138",name:"丝袜",type:"干垃圾",count:"315"},{id:"1139",name:"碎碗",type:"干垃圾",count:"717"},{id:"1140",name:"树枝",type:"干垃圾",count:"487"},{id:"1141",name:"碎纸屑",type:"干垃圾",count:"2478"},{id:"1235",name:"拖把",type:"干垃圾",count:"191"},{id:"1236",name:"糖包",type:"干垃圾",count:"387"},{id:"1237",name:"陶瓷杯",type:"干垃圾",count:"540"},{id:"1238",name:"陶瓷花瓶",type:"干垃圾",count:"1329"},{id:"1239",name:"陶瓷花盆",type:"干垃圾",count:"1278"},{id:"1240",name:"陶瓷类废弃物",type:"干垃圾",count:"415"},{id:"1241",name:"陶瓷盘子",type:"干垃圾",count:"500"},{id:"1242",name:"陶瓷碗碟",type:"干垃圾",count:"1169"},{id:"1243",name:"陶瓷制品",type:"干垃圾",count:"409"},{id:"1244",name:"头发",type:"干垃圾",count:"6859"},{id:"1245",name:"糖果皮",type:"干垃圾",count:"1494"},{id:"1246",name:"桃核",type:"干垃圾",count:"4213"},{id:"1247",name:"糖浆包",type:"干垃圾",count:"386"},{id:"1248",name:"太空沙",type:"干垃圾",count:"111"},{id:"1249",name:"调料包",type:"干垃圾",count:"425"},{id:"1250",name:"调料袋",type:"干垃圾",count:"198"},{id:"1251",name:"田螺壳",type:"干垃圾",count:"583"},{id:"1252",name:"透明打包盒",type:"干垃圾",count:"681"},{id:"1253",name:"脱毛膏",type:"干垃圾",count:"224"},{id:"1254",name:"透明胶",type:"干垃圾",count:"150"},{id:"1255",name:"陶泥",type:"干垃圾",count:"124"},{id:"1256",name:"退热贴",type:"干垃圾",count:"110"},{id:"1257",name:"头饰",type:"干垃圾",count:"137"},{id:"1258",name:"陶土花瓶",type:"干垃圾",count:"1217"},{id:"1259",name:"头屑",type:"干垃圾",count:"149"},{id:"1260",name:"拖鞋",type:"干垃圾",count:"984"},{id:"1261",name:"剃须泡沫罐",type:"干垃圾",count:"885"},{id:"1262",name:"脱氧剂",type:"干垃圾",count:"117"},{id:"1263",name:"太阳眼镜",type:"干垃圾",count:"532"},{id:"1264",name:"坛子",type:"干垃圾",count:"108"},{id:"1265",name:"贴纸",type:"干垃圾",count:"2332"},{id:"1266",name:"糖纸",type:"干垃圾",count:"2492"},{id:"1299",name:"文蛤壳",type:"干垃圾",count:"305"},{id:"1300",name:"乌龟壳",type:"干垃圾",count:"488"},{id:"1301",name:"文件袋",type:"干垃圾",count:"210"},{id:"1302",name:"外卖餐盒",type:"干垃圾",count:"2728"},{id:"1303",name:"外卖餐具",type:"干垃圾",count:"2130"},{id:"1304",name:"外卖饭盒",type:"干垃圾",count:"3191"},{id:"1305",name:"外卖盒子",type:"干垃圾",count:"4448"},{id:"1306",name:"外卖塑料袋",type:"干垃圾",count:"21822"},{id:"1307",name:"外卖塑料盒",type:"干垃圾",count:"5189"},{id:"1308",name:"外卖纸盒",type:"干垃圾",count:"5248"},{id:"1309",name:"瓦片",type:"干垃圾",count:"118"},{id:"1310",name:"网球",type:"干垃圾",count:"134"},{id:"1311",name:"污染严重的纸",type:"干垃圾",count:"2280"},{id:"1312",name:"污染纸张",type:"干垃圾",count:"2496"},{id:"1313",name:"卫生护垫",type:"干垃圾",count:"239"},{id:"1314",name:"卫生巾外包装",type:"干垃圾",count:"8695"},{id:"1315",name:"卫生巾包装袋",type:"干垃圾",count:"9585"},{id:"1316",name:"卫生间用纸",type:"干垃圾",count:"2509"},{id:"1317",name:"卫生纸内芯",type:"干垃圾",count:"4395"},{id:"1318",name:"卫生巾",type:"干垃圾",count:"8316"},{id:"1319",name:"卫生棉条",type:"干垃圾",count:"406"},{id:"1320",name:"污损塑料袋",type:"干垃圾",count:"9587"},{id:"1321",name:"卫生纸",type:"干垃圾",count:"4389"},{id:"1322",name:"污损纸张",type:"干垃圾",count:"2490"},{id:"1323",name:"蚊香",type:"干垃圾",count:"262"},{id:"1324",name:"文胸",type:"干垃圾",count:"131"},{id:"1325",name:"蚊香灰",type:"干垃圾",count:"485"},{id:"1326",name:"蚊香片",type:"干垃圾",count:"548"},{id:"1327",name:"污渍纸巾",type:"干垃圾",count:"6284"},{id:"1377",name:"线",type:"干垃圾",count:"141"},{id:"1378",name:"锡箔餐盒",type:"干垃圾",count:"627"},{id:"1379",name:"星巴克咖啡杯",type:"干垃圾",count:"924"},{id:"1380",name:"星巴克塑料杯",type:"干垃圾",count:"2477"},{id:"1381",name:"相册",type:"干垃圾",count:"99"},{id:"1382",name:"香肠壳",type:"干垃圾",count:"328"},{id:"1383",name:"吸尘器灰尘",type:"干垃圾",count:"712"},{id:"1384",name:"洗涤液包装袋",type:"干垃圾",count:"1360"},{id:"1385",name:"吸管",type:"干垃圾",count:"1804"},{id:"1386",name:"雪糕棒",type:"干垃圾",count:"329"},{id:"1387",name:"吸管塑料包装",type:"干垃圾",count:"4397"},{id:"1388",name:"小核桃壳",type:"干垃圾",count:"4904"},{id:"1389",name:"绣花针",type:"干垃圾",count:"913"},{id:"1390",name:"橡胶",type:"干垃圾",count:"201"},{id:"1391",name:"橡胶手套",type:"干垃圾",count:"553"},{id:"1392",name:"橡胶制品",type:"干垃圾",count:"209"},{id:"1393",name:"洗脸巾",type:"干垃圾",count:"176"},{id:"1394",name:"西梅核",type:"干垃圾",count:"658"},{id:"1395",name:"小票",type:"干垃圾",count:"145"},{id:"1396",name:"橡皮",type:"干垃圾",count:"325"},{id:"1397",name:"橡皮筋",type:"干垃圾",count:"588"},{id:"1398",name:"橡皮泥",type:"干垃圾",count:"664"},{id:"1399",name:"下水道杂物",type:"干垃圾",count:"743"},{id:"1400",name:"洗发水",type:"干垃圾",count:"1058"},{id:"1401",name:"血糖试纸",type:"干垃圾",count:"2576"},{id:"1402",name:"洗碗布",type:"干垃圾",count:"803"},{id:"1403",name:"夏威夷果壳",type:"干垃圾",count:"668"},{id:"1404",name:"香熏球",type:"干垃圾",count:"131"},{id:"1405",name:"香烟",type:"干垃圾",count:"1294"},{id:"1406",name:"香烟盒",type:"干垃圾",count:"1729"},{id:"1407",name:"香烟灰",type:"干垃圾",count:"1799"},{id:"1408",name:"信用卡",type:"干垃圾",count:"149"},{id:"1409",name:"香烟过滤嘴",type:"干垃圾",count:"1312"},{id:"1410",name:"香烟头",type:"干垃圾",count:"3731"},{id:"1411",name:"洗衣液包装袋",type:"干垃圾",count:"1551"},{id:"1412",name:"胸罩",type:"干垃圾",count:"278"},{id:"1413",name:"宣纸",type:"干垃圾",count:"2278"},{id:"1414",name:"卸妆膏",type:"干垃圾",count:"126"},{id:"1415",name:"卸妆棉",type:"干垃圾",count:"295"},{id:"1416",name:"小纸屑",type:"干垃圾",count:"2310"},{id:"1417",name:"修正液",type:"干垃圾",count:"129"},{id:"1418",name:"卸妆纸巾",type:"干垃圾",count:"6322"},{id:"1419",name:"洗衣粉",type:"干垃圾",count:"186"},{id:"1420",name:"修正带",type:"干垃圾",count:"142"},{id:"1421",name:"吸油纸",type:"干垃圾",count:"2551"},{id:"1499",name:"眼部精华胶囊",type:"干垃圾",count:"241"},{id:"1500",name:"牙齿",type:"干垃圾",count:"371"},{id:"1501",name:"一次性保鲜膜",type:"干垃圾",count:"741"},{id:"1502",name:"一次性杯子",type:"干垃圾",count:"924"},{id:"1503",name:"一次性餐盒",type:"干垃圾",count:"909"},{id:"1504",name:"一次性打火机",type:"干垃圾",count:"2297"},{id:"1505",name:"一次性咖啡纸杯",type:"干垃圾",count:"3597"},{id:"1506",name:"一次性筷子",type:"干垃圾",count:"2141"},{id:"1507",name:"一次性口罩",type:"干垃圾",count:"430"},{id:"1508",name:"一次性尿布",type:"干垃圾",count:"2070"},{id:"1509",name:"一次性内裤",type:"干垃圾",count:"1087"},{id:"1510",name:"一次性手套",type:"干垃圾",count:"670"},{id:"1511",name:"一次性塑料杯",type:"干垃圾",count:"2591"},{id:"1512",name:"一次性塑料餐盒",type:"干垃圾",count:"2770"},{id:"1513",name:"一次性塑料袋",type:"干垃圾",count:"9779"},{id:"1514",name:"一次性塑料盘",type:"干垃圾",count:"2140"},{id:"1515",name:"一次性塑料手套",type:"干垃圾",count:"2440"},{id:"1516",name:"一次性塑料勺子",type:"干垃圾",count:"2345"},{id:"1517",name:"一次性塑料调羹",type:"干垃圾",count:"2199"},{id:"1518",name:"一次性塑料浴帽",type:"干垃圾",count:"2141"},{id:"1519",name:"一次性用品",type:"干垃圾",count:"274"},{id:"1520",name:"一次性纸餐盘",type:"干垃圾",count:"2453"},{id:"1521",name:"一次性纸杯",type:"干垃圾",count:"3232"},{id:"1522",name:"一次性竹筷子",type:"干垃圾",count:"1100"},{id:"1523",name:"烟蒂",type:"干垃圾",count:"1297"},{id:"1524",name:"羊骨",type:"干垃圾",count:"261"},{id:"1525",name:"婴儿尿布",type:"干垃圾",count:"1965"},{id:"1526",name:"衣服标签",type:"干垃圾",count:"2813"},{id:"1527",name:"牙膏",type:"干垃圾",count:"1060"},{id:"1528",name:"荧光笔",type:"干垃圾",count:"617"},{id:"1529",name:"荧光棒",type:"干垃圾",count:"139"},{id:"1530",name:"牙膏壳",type:"干垃圾",count:"1442"},{id:"1531",name:"牙膏皮",type:"干垃圾",count:"1611"},{id:"1532",name:"烟盒",type:"干垃圾",count:"673"},{id:"1533",name:"烟灰",type:"干垃圾",count:"1661"},{id:"1534",name:"油画刷",type:"干垃圾",count:"362"},{id:"1535",name:"眼镜",type:"干垃圾",count:"509"},{id:"1536",name:"泳镜",type:"干垃圾",count:"99"},{id:"1537",name:"眼镜盒",type:"干垃圾",count:"580"},{id:"1538",name:"眼膜",type:"干垃圾",count:"127"},{id:"1539",name:"姨妈巾",type:"干垃圾",count:"992"},{id:"1540",name:"玉米皮",type:"干垃圾",count:"3818"},{id:"1541",name:"羽毛球",type:"干垃圾",count:"299"},{id:"1542",name:"玉米衣",type:"干垃圾",count:"3347"},{id:"1543",name:"印泥",type:"干垃圾",count:"135"},{id:"1544",name:"雨披",type:"干垃圾",count:"122"},{id:"1545",name:"牙签",type:"干垃圾",count:"936"},{id:"1546",name:"牙签塑料盒",type:"干垃圾",count:"3842"},{id:"1547",name:"牙刷",type:"干垃圾",count:"823"},{id:"1548",name:"永生花",type:"干垃圾",count:"779"},{id:"1549",name:"油条包装袋",type:"干垃圾",count:"1635"},{id:"1550",name:"眼贴膜",type:"干垃圾",count:"135"},{id:"1551",name:"油污纸",type:"干垃圾",count:"2514"},{id:"1552",name:"牙线",type:"干垃圾",count:"316"},{id:"1553",name:"牙线棒",type:"干垃圾",count:"340"},{id:"1554",name:"眼线笔",type:"干垃圾",count:"675"},{id:"1555",name:"隐形眼镜",type:"干垃圾",count:"1082"},{id:"1556",name:"隐形眼镜护理液",type:"干垃圾",count:"1115"},{id:"1557",name:"羊蝎子",type:"干垃圾",count:"141"},{id:"1558",name:"眼影",type:"干垃圾",count:"149"},{id:"1559",name:"雨衣",type:"干垃圾",count:"145"},{id:"1560",name:"验孕棒",type:"干垃圾",count:"236"},{id:"1561",name:"营养土",type:"干垃圾",count:"300"},{id:"1562",name:"油脂",type:"干垃圾",count:"334"},{id:"1563",name:"胭脂",type:"干垃圾",count:"91"},{id:"1564",name:"圆珠笔",type:"干垃圾",count:"853"},{id:"1565",name:"圆珠笔芯",type:"干垃圾",count:"1246"},{id:"1566",name:"椰子壳",type:"干垃圾",count:"1398"},{id:"1644",name:"脏玻璃瓶",type:"干垃圾",count:"4459"},{id:"1645",name:"早餐奶包装袋",type:"干垃圾",count:"1449"},{id:"1646",name:"猪大骨",type:"干垃圾",count:"1024"},{id:"1647",name:"自动铅笔笔芯",type:"干垃圾",count:"1377"},{id:"1648",name:"榨菜袋",type:"干垃圾",count:"547"},{id:"1649",name:"智齿",type:"干垃圾",count:"93"},{id:"1650",name:"纸板盒",type:"干垃圾",count:"2438"},{id:"1651",name:"装过湿垃圾塑料袋",type:"干垃圾",count:"10684"},{id:"1652",name:"(大)猪骨头",type:"干垃圾",count:"7815"},{id:"1653",name:"枕巾",type:"干垃圾",count:"100"},{id:"1654",name:"纸巾袋",type:"干垃圾",count:"6367"},{id:"1655",name:"纸胶带",type:"干垃圾",count:"2568"},{id:"1656",name:"纸咖啡杯",type:"干垃圾",count:"2981"},{id:"1657",name:"蟑螂贴",type:"干垃圾",count:"1407"},{id:"1658",name:"照片",type:"干垃圾",count:"186"},{id:"1659",name:"纸皮核桃",type:"干垃圾",count:"4703"},{id:"1660",name:"蒸汽眼罩",type:"干垃圾",count:"144"},{id:"1661",name:"粘鼠板",type:"干垃圾",count:"271"},{id:"1662",name:"装蔬菜的塑料袋",type:"干垃圾",count:"10324"},{id:"1663",name:"猪腿骨",type:"干垃圾",count:"757"},{id:"1664",name:"生物冰袋",type:"干垃圾",count:"423"},{id:"1665",name:"中性笔",type:"干垃圾",count:"620"},{id:"1666",name:"沾有油渍的食品包装袋",type:"干垃圾",count:"2035"},{id:"1667",name:"珍珠奶茶杯",type:"干垃圾",count:"10324"},{id:"1668",name:"竹制品",type:"干垃圾",count:"106"},{id:"1669",name:"榛子壳",type:"干垃圾",count:"312"},{id:"1670",name:"纸质外卖盒",type:"干垃圾",count:"6137"},{id:"1671",name:"纸巾",type:"干垃圾",count:"6282"},{id:"1672",name:"指甲片",type:"干垃圾",count:"2159"},{id:"1673",name:"砖块",type:"干垃圾",count:"167"},{id:"1674",name:"脏抹布",type:"干垃圾",count:"675"},{id:"1675",name:"纸尿裤",type:"干垃圾",count:"5660"},{id:"1676",name:"脏牛奶盒",type:"干垃圾",count:"4144"},{id:"1677",name:"自热火锅加热包",type:"干垃圾",count:"545"},{id:"1678",name:"紫砂壶",type:"干垃圾",count:"105"},{id:"1679",name:"渣土",type:"干垃圾",count:"320"},{id:"1680",name:"织物",type:"干垃圾",count:"92"},{id:"10",name:"奥特曼玩具",type:"可回收",count:"580"},{id:"75",name:"布包",type:"可回收",count:"472"},{id:"76",name:"背包",type:"可回收",count:"284"},{id:"77",name:"步步高学习机",type:"可回收",count:"102"},{id:"78",name:"白炽灯",type:"可回收",count:"182"},{id:"79",name:"被单",type:"可回收",count:"109"},{id:"80",name:"报废车辆",type:"可回收",count:"176"},{id:"81",name:"办公用纸",type:"可回收",count:"2263"},{id:"82",name:"办公桌",type:"可回收",count:"99"},{id:"83",name:"冰红茶利乐包装",type:"可回收",count:"799"},{id:"84",name:"笔记本电脑",type:"可回收",count:"1925"},{id:"85",name:"白酒瓶",type:"可回收",count:"1092"},{id:"86",name:"玻璃",type:"可回收",count:"2224"},{id:"87",name:"玻璃杯",type:"可回收",count:"2793"},{id:"88",name:"玻璃放大镜",type:"可回收",count:"2250"},{id:"89",name:"玻璃锅盖",type:"可回收",count:"2356"},{id:"90",name:"冰淇淋盒",type:"可回收",count:"406"},{id:"91",name:"玻璃壶",type:"可回收",count:"2234"},{id:"92",name:"玻璃瓶",type:"可回收",count:"4439"},{id:"93",name:"巴黎水玻璃瓶",type:"可回收",count:"5092"},{id:"94",name:"玻璃碎片",type:"可回收",count:"2301"},{id:"95",name:"玻璃烟灰缸",type:"可回收",count:"2956"},{id:"96",name:"玻璃渣",type:"可回收",count:"2309"},{id:"97",name:"包书纸",type:"可回收",count:"3039"},{id:"98",name:"保温杯",type:"可回收",count:"249"},{id:"99",name:"保温袋",type:"可回收",count:"190"},{id:"100",name:"保温瓶",type:"可回收",count:"263"},{id:"101",name:"布娃娃",type:"可回收",count:"429"},{id:"102",name:"布鞋",type:"可回收",count:"685"},{id:"103",name:"不锈钢杯子",type:"可回收",count:"546"},{id:"104",name:"不锈钢垃圾桶",type:"可回收",count:"1129"},{id:"105",name:"不锈钢勺子",type:"可回收",count:"237"},{id:"106",name:"变形金刚",type:"可回收",count:"143"},{id:"107",name:"保鲜膜",type:"可回收",count:"562"},{id:"108",name:"保鲜膜带齿盒",type:"可回收",count:"611"},{id:"109",name:"布艺窗帘",type:"可回收",count:"369"},{id:"110",name:"报纸",type:"可回收",count:"3186"},{id:"111",name:"被子",type:"可回收",count:"369"},{id:"112",name:"包装盒",type:"可回收",count:"895"},{id:"113",name:"抱枕",type:"可回收",count:"108"},{id:"114",name:"包装纸",type:"可回收",count:"2843"},{id:"177",name:"菜刀",type:"可回收",count:"678"},{id:"178",name:"磁带播放器",type:"可回收",count:"163"},{id:"179",name:"草稿本",type:"可回收",count:"236"},{id:"180",name:"窗玻璃",type:"可回收",count:"2226"},{id:"181",name:"床垫",type:"可回收",count:"269"},{id:"182",name:"床单",type:"可回收",count:"331"},{id:"183",name:"窗帘",type:"可回收",count:"164"},{id:"184",name:"充电宝",type:"可回收",count:"469"},{id:"185",name:"充电器",type:"可回收",count:"384"},{id:"186",name:"充电热水袋",type:"可回收",count:"869"},{id:"187",name:"充电线",type:"可回收",count:"762"},{id:"188",name:"充电牙刷",type:"可回收",count:"861"},{id:"189",name:"充电装置",type:"可回收",count:"128"},{id:"190",name:"吹风机",type:"可回收",count:"159"},{id:"191",name:"衬衫",type:"可回收",count:"101"},{id:"192",name:"除湿机",type:"可回收",count:"171"},{id:"193",name:"插线板",type:"可回收",count:"163"},{id:"194",name:"茶叶罐",type:"可回收",count:"2482"},{id:"195",name:"插座",type:"可回收",count:"134"},{id:"196",name:"茶几",type:"可回收",count:"171"},{id:"197",name:"CPU",type:"可回收",count:"121"},{id:"198",name:"磁铁",type:"可回收",count:"307"},{id:"199",name:"传真机",type:"可回收",count:"90"},{id:"222",name:"蛋挞盒",type:"可回收",count:"267"},{id:"264",name:"刀",type:"可回收",count:"228"},{id:"265",name:"电脑机箱",type:"可回收",count:"1269"},{id:"266",name:"电冰箱",type:"可回收",count:"265"},{id:"267",name:"地板砖",type:"可回收",count:"166"},{id:"268",name:"电吹风",type:"可回收",count:"148"},{id:"269",name:"电动保温箱",type:"可回收",count:"133"},{id:"270",name:"电炖锅",type:"可回收",count:"235"},{id:"271",name:"电动卷发棒",type:"可回收",count:"162"},{id:"272",name:"电动剃须刀",type:"可回收",count:"356"},{id:"273",name:"电动玩具",type:"可回收",count:"581"},{id:"274",name:"电动牙刷",type:"可回收",count:"912"},{id:"275",name:"电饭煲",type:"可回收",count:"548"},{id:"276",name:"电风扇",type:"可回收",count:"462"},{id:"277",name:"电话机",type:"可回收",count:"254"},{id:"278",name:"电烤箱",type:"可回收",count:"129"},{id:"279",name:"电脑",type:"可回收",count:"1259"},{id:"280",name:"电脑包",type:"可回收",count:"1438"},{id:"281",name:"刀片",type:"可回收",count:"360"},{id:"282",name:"电瓶",type:"可回收",count:"306"},{id:"283",name:"电热毯",type:"可回收",count:"131"},{id:"284",name:"电视机",type:"可回收",count:"639"},{id:"285",name:"订书机",type:"可回收",count:"739"},{id:"286",name:"地毯",type:"可回收",count:"133"},{id:"287",name:"地铁票",type:"可回收",count:"283"},{id:"288",name:"电线",type:"可回收",count:"637"},{id:"289",name:"点心盒",type:"可回收",count:"155"},{id:"290",name:"电源插头",type:"可回收",count:"191"},{id:"291",name:"打印机",type:"可回收",count:"123"},{id:"292",name:"打印纸",type:"可回收",count:"2343"},{id:"293",name:"钉子",type:"可回收",count:"197"},{id:"294",name:"电子灭蚊拍",type:"可回收",count:"168"},{id:"295",name:"电子血压仪",type:"可回收",count:"305"},{id:"305",name:"耳机",type:"可回收",count:"430"},{id:"306",name:"耳钉",type:"可回收",count:"109"},{id:"307",name:"耳环",type:"可回收",count:"138"},{id:"308",name:"二手手机",type:"可回收",count:"2557"},{id:"346",name:"帆布包",type:"可回收",count:"489"},{id:"347",name:"帆布袋",type:"可回收",count:"407"},{id:"348",name:"废报纸",type:"可回收",count:"3226"},{id:"349",name:"废电路板",type:"可回收",count:"176"},{id:"350",name:"废旧报纸",type:"可回收",count:"3234"},{id:"351",name:"废旧电子产品",type:"可回收",count:"209"},{id:"352",name:"废旧木柴",type:"可回收",count:"162"},{id:"353",name:"废旧吸铁石",type:"可回收",count:"516"},{id:"354",name:"蜂蜜罐",type:"可回收",count:"162"},{id:"355",name:"废弃塑料文具",type:"可回收",count:"1971"},{id:"356",name:"废弃衣服",type:"可回收",count:"2753"},{id:"357",name:"防晒衣",type:"可回收",count:"117"},{id:"358",name:"废锁头",type:"可回收",count:"150"},{id:"359",name:"复印机",type:"可回收",count:"93"},{id:"360",name:"废钥匙",type:"可回收",count:"337"},{id:"361",name:"复印纸",type:"可回收",count:"2275"},{id:"429",name:"锅",type:"可回收",count:"203"},{id:"430",name:"鼓棒",type:"可回收",count:"104"},{id:"431",name:"果冻杯",type:"可回收",count:"266"},{id:"432",name:"高尔夫球杆",type:"可回收",count:"126"},{id:"433",name:"干发帽",type:"可回收",count:"129"},{id:"434",name:"高跟鞋",type:"可回收",count:"475"},{id:"435",name:"广告用纸",type:"可回收",count:"2263"},{id:"436",name:"广告纸片",type:"可回收",count:"2351"},{id:"437",name:"钢化玻璃",type:"可回收",count:"2247"},{id:"438",name:"钢化膜",type:"可回收",count:"168"},{id:"439",name:"硅胶玩具",type:"可回收",count:"648"},{id:"440",name:"干净饮料瓶",type:"可回收",count:"2336"},{id:"441",name:"擀面杖",type:"可回收",count:"168"},{id:"442",name:"钢琴",type:"可回收",count:"153"},{id:"443",name:"公文包",type:"可回收",count:"274"},{id:"444",name:"购物卡",type:"可回收",count:"139"},{id:"445",name:"高压锅",type:"可回收",count:"208"},{id:"446",name:"公交卡",type:"可回收",count:"129"},{id:"533",name:"滑板",type:"可回收",count:"111"},{id:"534",name:"海报",type:"可回收",count:"127"},{id:"535",name:"护肤品玻璃罐",type:"可回收",count:"2492"},{id:"536",name:"护肤品瓶",type:"可回收",count:"501"},{id:"537",name:"护肤品乳液瓶",type:"可回收",count:"632"},{id:"538",name:"护发素瓶",type:"可回收",count:"293"},{id:"539",name:"黄金",type:"可回收",count:"295"},{id:"540",name:"红酒瓶",type:"可回收",count:"1087"},{id:"541",name:"画框",type:"可回收",count:"107"},{id:"542",name:"花露水瓶",type:"可回收",count:"2122"},{id:"543",name:"会员卡",type:"可回收",count:"124"},{id:"544",name:"化妆水瓶",type:"可回收",count:"1499"},{id:"545",name:"化妆品瓶",type:"可回收",count:"2155"},{id:"546",name:"ipad",type:"可回收",count:"167"},{id:"553",name:"鸡蛋盒",type:"可回收",count:"1263"},{id:"610",name:"旧被单",type:"可回收",count:"113"},{id:"611",name:"旧布鞋",type:"可回收",count:"695"},{id:"612",name:"旧报纸",type:"可回收",count:"3229"},{id:"613",name:"洁厕灵瓶子",type:"可回收",count:"974"},{id:"614",name:"剪刀",type:"可回收",count:"394"},{id:"615",name:"脚垫",type:"可回收",count:"115"},{id:"616",name:"家电家具",type:"可回收",count:"264"},{id:"617",name:"精华玻璃瓶",type:"可回收",count:"4496"},{id:"618",name:"酒精瓶",type:"可回收",count:"554"},{id:"619",name:"旧夹子",type:"可回收",count:"121"},{id:"620",name:"金戒指",type:"可回收",count:"235"},{id:"621",name:"旧帽子",type:"可回收",count:"176"},{id:"622",name:"酒瓶",type:"可回收",count:"1048"},{id:"623",name:"镜片",type:"可回收",count:"115"},{id:"624",name:"键盘",type:"可回收",count:"219"},{id:"625",name:"脚盆",type:"可回收",count:"122"},{id:"626",name:"旧皮鞋",type:"可回收",count:"900"},{id:"627",name:"金器",type:"可回收",count:"135"},{id:"628",name:"旧锁",type:"可回收",count:"104"},{id:"629",name:"旧书包",type:"可回收",count:"1276"},{id:"630",name:"金属罐",type:"可回收",count:"309"},{id:"631",name:"金属盒",type:"可回收",count:"317"},{id:"632",name:"金手链",type:"可回收",count:"206"},{id:"633",name:"金属零件",type:"可回收",count:"268"},{id:"634",name:"金属门吸",type:"可回收",count:"291"},{id:"635",name:"金属瓶盖",type:"可回收",count:"698"},{id:"636",name:"金属拖把杆",type:"可回收",count:"369"},{id:"637",name:"金属香炉",type:"可回收",count:"275"},{id:"638",name:"金属钥匙扣",type:"可回收",count:"517"},{id:"639",name:"旧塑料篮子",type:"可回收",count:"1997"},{id:"640",name:"净水器",type:"可回收",count:"749"},{id:"641",name:"计算器",type:"可回收",count:"165"},{id:"642",name:"旧手提包",type:"可回收",count:"334"},{id:"643",name:"金属文件柜",type:"可回收",count:"305"},{id:"644",name:"旧铁锅",type:"可回收",count:"539"},{id:"645",name:"交通卡",type:"可回收",count:"137"},{id:"646",name:"旧拖鞋",type:"可回收",count:"1014"},{id:"647",name:"旧玩具",type:"可回收",count:"707"},{id:"648",name:"旧玩偶",type:"可回收",count:"161"},{id:"649",name:"机箱",type:"可回收",count:"97"},{id:"650",name:"接线板",type:"可回收",count:"149"},{id:"651",name:"旧相机",type:"可回收",count:"120"},{id:"652",name:"金项链",type:"可回收",count:"202"},{id:"653",name:"旧鞋子",type:"可回收",count:"1702"},{id:"654",name:"旧衣服",type:"可回收",count:"3942"},{id:"655",name:"旧瑜伽垫",type:"可回收",count:"105"},{id:"656",name:"酱油瓶",type:"可回收",count:"917"},{id:"657",name:"金子",type:"可回收",count:"194"},{id:"658",name:"旧纸袋",type:"可回收",count:"2707"},{id:"659",name:"旧枕头",type:"可回收",count:"297"},{id:"660",name:"卷筒纸芯",type:"可回收",count:"2285"},{id:"694",name:"KFC纸袋",type:"可回收",count:"2726"},{id:"695",name:"课本",type:"可回收",count:"130"},{id:"696",name:"靠垫",type:"可回收",count:"106"},{id:"697",name:"快递盒",type:"可回收",count:"824"},{id:"698",name:"空调机",type:"可回收",count:"217"},{id:"699",name:"快递纸盒",type:"可回收",count:"3657"},{id:"700",name:"咖啡隔热纸",type:"可回收",count:"2739"},{id:"701",name:"抗光屏",type:"可回收",count:"93"},{id:"702",name:"可乐瓶",type:"可回收",count:"1394"},{id:"703",name:"可乐罐",type:"可回收",count:"831"},{id:"704",name:"可乐瓶盖",type:"可回收",count:"1653"},{id:"705",name:"空气净化器过滤网",type:"可回收",count:"163"},{id:"706",name:"矿泉水瓶盖",type:"可回收",count:"2916"},{id:"707",name:"矿泉水瓶盖",type:"可回收",count:"2916"},{id:"708",name:"矿泉水桶",type:"可回收",count:"1174"},{id:"709",name:"裤子",type:"可回收",count:"227"},{id:"710",name:"靠枕",type:"可回收",count:"93"},{id:"711",name:"卡纸",type:"可回收",count:"2293"},{id:"758",name:"铝箔袋",type:"可回收",count:"265"},{id:"759",name:"溜冰鞋",type:"可回收",count:"502"},{id:"760",name:"铝箔纸",type:"可回收",count:"2394"},{id:"761",name:"螺钉",type:"可回收",count:"133"},{id:"762" 4 | ,name:"铃铛",type:"可回收",count:"93"},{id:"763",name:"老干妈瓶子",type:"可回收",count:"1045"},{id:"764",name:"蓝罐曲奇盒",type:"可回收",count:"176"},{id:"765",name:"乐高玩具",type:"可回收",count:"572"},{id:"766",name:"拉杆箱",type:"可回收",count:"114"},{id:"767",name:"料酒瓶",type:"可回收",count:"1054"},{id:"768",name:"垃圾桶",type:"可回收",count:"1063"},{id:"769",name:"垃圾箱",type:"可回收",count:"550"},{id:"770",name:"乐扣",type:"可回收",count:"92"},{id:"771",name:"铝膜",type:"可回收",count:"161"},{id:"772",name:"脸部按摩仪",type:"可回收",count:"110"},{id:"773",name:"脸盆",type:"可回收",count:"144"},{id:"774",name:"螺丝刀",type:"可回收",count:"667"},{id:"775",name:"铝塑复合管",type:"可回收",count:"154"},{id:"776",name:"轮胎",type:"可回收",count:"222"},{id:"777",name:"蓝牙耳机",type:"可回收",count:"469"},{id:"778",name:"晾衣架",type:"可回收",count:"261"},{id:"779",name:"路由器",type:"可回收",count:"131"},{id:"780",name:"铝制品",type:"可回收",count:"151"},{id:"841",name:"密胺餐具",type:"可回收",count:"147"},{id:"842",name:"抹布",type:"可回收",count:"650"},{id:"843",name:"幕布",type:"可回收",count:"292"},{id:"844",name:"木板",type:"可回收",count:"274"},{id:"845",name:"棉布",type:"可回收",count:"325"},{id:"846",name:"棉被",type:"可回收",count:"180"},{id:"847",name:"木凳",type:"可回收",count:"154"},{id:"848",name:"木棍",type:"可回收",count:"230"},{id:"849",name:"美工刀",type:"可回收",count:"246"},{id:"850",name:"棉花被",type:"可回收",count:"909"},{id:"851",name:"灭火器",type:"可回收",count:"122"},{id:"852",name:"木积木",type:"可回收",count:"185"},{id:"853",name:"木块",type:"可回收",count:"162"},{id:"854",name:"名片",type:"可回收",count:"137"},{id:"855",name:"毛绒玩具",type:"可回收",count:"795"},{id:"856",name:"木梳",type:"可回收",count:"161"},{id:"857",name:"面霜瓶",type:"可回收",count:"430"},{id:"858",name:"墨水瓶",type:"可回收",count:"1379"},{id:"859",name:"毛毯",type:"可回收",count:"218"},{id:"860",name:"木头",type:"可回收",count:"691"},{id:"861",name:"木条",type:"可回收",count:"170"},{id:"862",name:"马桶盖",type:"可回收",count:"312"},{id:"863",name:"棉拖鞋",type:"可回收",count:"1013"},{id:"864",name:"毛线",type:"可回收",count:"277"},{id:"865",name:"木椅",type:"可回收",count:"149"},{id:"866",name:"沐浴露瓶",type:"可回收",count:"583"},{id:"867",name:"木质拼板",type:"可回收",count:"152"},{id:"868",name:"木质拖把杆",type:"可回收",count:"252"},{id:"869",name:"木制玩具",type:"可回收",count:"596"},{id:"870",name:"墨汁瓶",type:"可回收",count:"286"},{id:"914",name:"奶茶塑料盖",type:"可回收",count:"7512"},{id:"915",name:"内存卡",type:"可回收",count:"138"},{id:"916",name:"内存条",type:"可回收",count:"118"},{id:"917",name:"奶粉罐",type:"可回收",count:"413"},{id:"918",name:"奶粉桶",type:"可回收",count:"313"},{id:"919",name:"牛奶盒",type:"可回收",count:"4126"},{id:"920",name:"牛奶瓶",type:"可回收",count:"1685"},{id:"921",name:"牛皮纸",type:"可回收",count:"2461"},{id:"922",name:"暖水瓶",type:"可回收",count:"1278"},{id:"923",name:"牛仔裤",type:"可回收",count:"188"},{id:"957",name:"PET塑料瓶",type:"可回收",count:"4104"},{id:"958",name:"PS4",type:"可回收",count:"118"},{id:"959",name:"皮包",type:"可回收",count:"428"},{id:"960",name:"平板玻璃",type:"可回收",count:"2240"},{id:"961",name:"跑步机",type:"可回收",count:"98"},{id:"962",name:"排插",type:"可回收",count:"92"},{id:"963",name:"皮带",type:"可回收",count:"270"},{id:"964",name:"皮具",type:"可回收",count:"181"},{id:"965",name:"皮夹",type:"可回收",count:"185"},{id:"966",name:"啤酒罐",type:"可回收",count:"450"},{id:"967",name:"啤酒盖",type:"可回收",count:"382"},{id:"968",name:"啤酒瓶",type:"可回收",count:"1820"},{id:"969",name:"泡沫板",type:"可回收",count:"878"},{id:"970",name:"泡沫保温箱",type:"可回收",count:"851"},{id:"971",name:"泡沫箱",type:"可回收",count:"1115"},{id:"972",name:"泡沫塑料",type:"可回收",count:"2903"},{id:"973",name:"拍拍净瓶盖",type:"可回收",count:"513"},{id:"974",name:"乒乓球拍",type:"可回收",count:"150"},{id:"975",name:"皮鞋",type:"可回收",count:"803"},{id:"976",name:"皮质钱包",type:"可回收",count:"786"},{id:"977",name:"泡沫板",type:"可回收",count:"878"},{id:"1004",name:"铅笔盒",type:"可回收",count:"1083"},{id:"1005",name:"起钉器",type:"可回收",count:"96"},{id:"1006",name:"球拍",type:"可回收",count:"122"},{id:"1007",name:"气泡缓冲材料",type:"可回收",count:"109"},{id:"1008",name:"铅球",type:"可回收",count:"129"},{id:"1009",name:"曲奇铁罐",type:"可回收",count:"363"},{id:"1010",name:"其他玻璃制品",type:"可回收",count:"2271"},{id:"1011",name:"其他金属制品",type:"可回收",count:"278"},{id:"1012",name:"球鞋",type:"可回收",count:"527"},{id:"1023",name:"软玻璃",type:"可回收",count:"2227"},{id:"1024",name:"热水袋",type:"可回收",count:"827"},{id:"1025",name:"热水瓶",type:"可回收",count:"1376"},{id:"1026",name:"软桶",type:"可回收",count:"101"},{id:"1027",name:"乳液罐",type:"可回收",count:"249"},{id:"1028",name:"乳液瓶",type:"可回收",count:"423"},{id:"1142",name:"鼠标",type:"可回收",count:"364"},{id:"1143",name:"碎玻璃片",type:"可回收",count:"2997"},{id:"1144",name:"碎玻璃制品",type:"可回收",count:"3025"},{id:"1145",name:"扫地机",type:"可回收",count:"96"},{id:"1146",name:"扫地机器人",type:"可回收",count:"2815"},{id:"1147",name:"速冻食品保温袋",type:"可回收",count:"242"},{id:"1148",name:"沙发",type:"可回收",count:"325"},{id:"1149",name:"塑复钢管",type:"可回收",count:"111"},{id:"1150",name:"水果网套",type:"可回收",count:"1468"},{id:"1151",name:"手表",type:"可回收",count:"359"},{id:"1152",name:"手办",type:"可回收",count:"200"},{id:"1153",name:"书包",type:"可回收",count:"1084"},{id:"1154",name:"书本",type:"可回收",count:"858"},{id:"1155",name:"手电筒",type:"可回收",count:"227"},{id:"1156",name:"爽肤水瓶",type:"可回收",count:"1326"},{id:"1157",name:"手机",type:"可回收",count:"2489"},{id:"1158",name:"水晶板",type:"可回收",count:"757"},{id:"1159",name:"数据线",type:"可回收",count:"403"},{id:"1160",name:"漱口水瓶",type:"可回收",count:"1680"},{id:"1161",name:"手链",type:"可回收",count:"159"},{id:"1162",name:"水龙头",type:"可回收",count:"821"},{id:"1163",name:"说明书",type:"可回收",count:"716"},{id:"1164",name:"水泥砖",type:"可回收",count:"928"},{id:"1165",name:"食品保鲜盒",type:"可回收",count:"210"},{id:"1166",name:"蛇皮袋",type:"可回收",count:"330"},{id:"1167",name:"食品罐头瓶",type:"可回收",count:"807"},{id:"1168",name:"烧水壶",type:"可回收",count:"804"},{id:"1169",name:"纱线手套",type:"可回收",count:"421"},{id:"1170",name:"摄像头",type:"可回收",count:"138"},{id:"1171",name:"收音机",type:"可回收",count:"123"},{id:"1172",name:"食用油桶",type:"可回收",count:"494"},{id:"1173",name:"绳子",type:"可回收",count:"186"},{id:"1174",name:"手镯",type:"可回收",count:"148"},{id:"1175",name:"塑料杯",type:"可回收",count:"2365"},{id:"1176",name:"塑料薄膜",type:"可回收",count:"2079"},{id:"1177",name:"塑料标签",type:"可回收",count:"2009"},{id:"1178",name:"塑料杯套",type:"可回收",count:"2426"},{id:"1179",name:"塑料包装",type:"可回收",count:"2684"},{id:"1180",name:"塑料包装纸盒",type:"可回收",count:"6128"},{id:"1181",name:"塑料餐具",type:"可回收",count:"2024"},{id:"1182",name:"塑料袋",type:"可回收",count:"9574"},{id:"1183",name:"塑料饭盒",type:"可回收",count:"3145"},{id:"1184",name:"塑料盒",type:"可回收",count:"2992"},{id:"1185",name:"塑料花盆",type:"可回收",count:"2847"},{id:"1186",name:"塑料架",type:"可回收",count:"1951"},{id:"1187",name:"塑料假花",type:"可回收",count:"2650"},{id:"1188",name:"塑料壳",type:"可回收",count:"2190"},{id:"1189",name:"塑料垃圾桶",type:"可回收",count:"2926"},{id:"1190",name:"塑料晾衣杆",type:"可回收",count:"1965"},{id:"1191",name:"塑料膜",type:"可回收",count:"2002"},{id:"1192",name:"塑料盆",type:"可回收",count:"2015"},{id:"1193",name:"塑料瓶盖",type:"可回收",count:"4399"},{id:"1194",name:"塑料泡沫",type:"可回收",count:"2799"},{id:"1195",name:"塑料日用品",type:"可回收",count:"1955"},{id:"1196",name:"塑料水管",type:"可回收",count:"2615"},{id:"1197",name:"塑料收纳盒",type:"可回收",count:"2003"},{id:"1198",name:"塑料梳子",type:"可回收",count:"2039"},{id:"1199",name:"塑料酸奶盒",type:"可回收",count:"4511"},{id:"1200",name:"塑料桶",type:"可回收",count:"2018"},{id:"1201",name:"塑料碗",type:"可回收",count:"2492"},{id:"1202",name:"塑料玩具",type:"可回收",count:"2487"},{id:"1203",name:"塑料药盒",type:"可回收",count:"3190"},{id:"1204",name:"塑料衣架",type:"可回收",count:"2128"},{id:"1205",name:"塑料饮料杯",type:"可回收",count:"2685"},{id:"1206",name:"塑料纸",type:"可回收",count:"4296"},{id:"1207",name:"扫描仪",type:"可回收",count:"88"},{id:"1208",name:"酸奶杯",type:"可回收",count:"1639"},{id:"1209",name:"酸奶玻璃瓶",type:"可回收",count:"5602"},{id:"1210",name:"酸奶盒",type:"可回收",count:"2647"},{id:"1211",name:"食品罐头瓶",type:"可回收",count:"807"},{id:"1212",name:"碎纸屑",type:"可回收",count:"2460"},{id:"1267",name:"台布",type:"可回收",count:"298"},{id:"1268",name:"拖把桶",type:"可回收",count:"200"},{id:"1269",name:"铁钉",type:"可回收",count:"306"},{id:"1270",name:"台灯",type:"可回收",count:"258"},{id:"1271",name:"铁管",type:"可回收",count:"266"},{id:"1272",name:"铜管",type:"可回收",count:"122"},{id:"1273",name:"铁罐",type:"可回收",count:"361"},{id:"1274",name:"糖果罐",type:"可回收",count:"365"},{id:"1275",name:"糖果盒",type:"可回收",count:"377"},{id:"1276",name:"铁盒",type:"可回收",count:"390"},{id:"1277",name:"弹簧",type:"可回收",count:"95"},{id:"1278",name:"太空望远镜",type:"可回收",count:"104"},{id:"1279",name:"台历",type:"可回收",count:"97"},{id:"1280",name:"铁皮罐头",type:"可回收",count:"714"},{id:"1281",name:"铁丝",type:"可回收",count:"316"},{id:"1282",name:"铜丝",type:"可回收",count:"125"},{id:"1283",name:"藤条",type:"可回收",count:"90"},{id:"1284",name:"铁勺",type:"可回收",count:"269"},{id:"1285",name:"铜线",type:"可回收",count:"168"},{id:"1286",name:"拖线板",type:"可回收",count:"170"},{id:"1287",name:"剃须刀",type:"可回收",count:"300"},{id:"1288",name:"剃须刀片",type:"可回收",count:"436"},{id:"1289",name:"投影仪",type:"可回收",count:"91"},{id:"1290",name:"体重秤",type:"可回收",count:"98"},{id:"1291",name:"铁制品",type:"可回收",count:"261"},{id:"1292",name:"铜制品",type:"可回收",count:"114"},{id:"1294",name:"U盘",type:"可回收",count:"176"},{id:"1328",name:"玩具卡片",type:"可回收",count:"585"},{id:"1329",name:"微波炉",type:"可回收",count:"110"},{id:"1330",name:"未被污染的输液袋",type:"可回收",count:"193"},{id:"1331",name:"未被污染的输液瓶",type:"可回收",count:"290"},{id:"1332",name:"午餐肉罐头瓶",type:"可回收",count:"1224"},{id:"1333",name:"无纺布包",type:"可回收",count:"535"},{id:"1334",name:"无纺布手提袋",type:"可回收",count:"484"},{id:"1335",name:"文件柜",type:"可回收",count:"126"},{id:"1336",name:"玩具盒",type:"可回收",count:"578"},{id:"1337",name:"文件夹",type:"可回收",count:"138"},{id:"1338",name:"玩具塑料包装纸盒",type:"可回收",count:"6566"},{id:"1339",name:"玩具塑料盒",type:"可回收",count:"3432"},{id:"1340",name:"钨丝灯",type:"可回收",count:"177"},{id:"1341",name:"网线",type:"可回收",count:"165"},{id:"1342",name:"望远镜",type:"可回收",count:"95"},{id:"1343",name:"袜子",type:"可回收",count:"929"},{id:"1422",name:"雪碧瓶",type:"可回收",count:"312"},{id:"1423",name:"香槟瓶",type:"可回收",count:"264"},{id:"1424",name:"宣传单",type:"可回收",count:"135"},{id:"1425",name:"鞋垫",type:"可回收",count:"516"},{id:"1426",name:"鞋带",type:"可回收",count:"500"},{id:"1427",name:"消毒液瓶",type:"可回收",count:"337"},{id:"1428",name:"洗涤液瓶",type:"可回收",count:"275"},{id:"1429",name:"信封",type:"可回收",count:"142"},{id:"1430",name:"消费卡",type:"可回收",count:"126"},{id:"1431",name:"信用卡",type:"可回收",count:"145"},{id:"1432",name:"洗发水瓶",type:"可回收",count:"1868"},{id:"1433",name:"洗发露瓶",type:"可回收",count:"348"},{id:"1434",name:"鞋盒",type:"可回收",count:"568"},{id:"1435",name:"洗洁精瓶",type:"可回收",count:"383"},{id:"1436",name:"显卡",type:"可回收",count:"150"},{id:"1437",name:"项链",type:"可回收",count:"143"},{id:"1438",name:"洗脸仪",type:"可回收",count:"103"},{id:"1439",name:"小木棍",type:"可回收",count:"239"},{id:"1440",name:"洗面奶瓶",type:"可回收",count:"820"},{id:"1441",name:"吸门器",type:"可回收",count:"113"},{id:"1442",name:"鲜奶盒",type:"可回收",count:"287"},{id:"1443",name:"芯片",type:"可回收",count:"110"},{id:"1444",name:"洗手液瓶",type:"可回收",count:"367"},{id:"1445",name:"香水瓶",type:"可回收",count:"1829"},{id:"1446",name:"小提琴",type:"可回收",count:"104"},{id:"1447",name:"吸铁石",type:"可回收",count:"484"},{id:"1448",name:"洗碗机",type:"可回收",count:"582"},{id:"1449",name:"洗衣机",type:"可回收",count:"142"},{id:"1450",name:"香烟壳",type:"可回收",count:"1577"},{id:"1451",name:"锡纸",type:"可回收",count:"2521"},{id:"1452",name:"信纸",type:"可回收",count:"2256"},{id:"1567",name:"饮料瓶",type:"可回收",count:"2310"},{id:"1568",name:"月饼盒",type:"可回收",count:"202"},{id:"1569",name:"硬板纸",type:"可回收",count:"2273"},{id:"1570",name:"腰带",type:"可回收",count:"97"},{id:"1571",name:"运动鞋",type:"可回收",count:"535"},{id:"1572",name:"移动硬盘",type:"可回收",count:"128"},{id:"1573",name:"衣服包装袋",type:"可回收",count:"3997"},{id:"1574",name:"衣服吊牌",type:"可回收",count:"2814"},{id:"1575",name:"衣服干洗剂瓶",type:"可回收",count:"2935"},{id:"1576",name:"银行卡",type:"可回收",count:"225"},{id:"1577",name:"衣架",type:"可回收",count:"246"},{id:"1578",name:"有机玻璃",type:"可回收",count:"2235"},{id:"1579",name:"瑜伽垫",type:"可回收",count:"100"},{id:"1580",name:"眼镜架",type:"可回收",count:"514"},{id:"1581",name:"亚克力板",type:"可回收",count:"102"},{id:"1582",name:"遥控器",type:"可回收",count:"266"},{id:"1583",name:"浴帘",type:"可回收",count:"101"},{id:"1584",name:"养乐多瓶",type:"可回收",count:"446"},{id:"1585",name:"易拉罐",type:"可回收",count:"1360"},{id:"1586",name:"易拉罐拉环",type:"可回收",count:"1370"},{id:"1587",name:"饮料利乐包装",type:"可回收",count:"1181"},{id:"1588",name:"饮料瓶",type:"可回收",count:"2310"},{id:"1589",name:"饮料瓶盖",type:"可回收",count:"2580"},{id:"1590",name:"泳帽",type:"可回收",count:"90"},{id:"1591",name:"羽毛球拍",type:"可回收",count:"311"},{id:"1592",name:"雨伞骨架",type:"可回收",count:"638"},{id:"1593",name:"钥匙",type:"可回收",count:"330"},{id:"1594",name:"眼霜罐",type:"可回收",count:"160"},{id:"1595",name:"雨伞伞面",type:"可回收",count:"609"},{id:"1596",name:"油桶",type:"可回收",count:"424"},{id:"1597",name:"雨鞋",type:"可回收",count:"495"},{id:"1598",name:"游戏手柄",type:"可回收",count:"151"},{id:"1599",name:"隐形眼镜包装盒",type:"可回收",count:"1890"},{id:"1600",name:"泳衣",type:"可回收",count:"107"},{id:"1601",name:"椅子",type:"可回收",count:"215"},{id:"1602",name:"硬纸板",type:"可回收",count:"2419"},{id:"1603",name:"硬质塑料瓶",type:"可回收",count:"4095"},{id:"1718",name:"竹签",type:"可回收",count:"417"},{id:"1720",name:"脏袜子",type:"可回收",count:"943"},{id:"1721",name:"自行车轮胎",type:"可回收",count:"425"},{id:"1717",name:"自拍杆",type:"可回收",count:"92"},{id:"1719",name:"钻石",type:"可回收",count:"306"},{id:"1722",name:"自行车轮胎",type:"可回收",count:"425"},{id:"1724",name:"座椅垫",type:"可回收",count:"95"},{id:"1725",name:"洗衣液瓶",type:"可回收",count:"553"},{id:"1726",name:"杂志",type:"可回收",count:"134"},{id:"1709",name:"照相机",type:"可回收",count:"122"},{id:"1727",name:"簪子",type:"可回收",count:"95"},{id:"1723",name:"作业本",type:"可回收",count:"182"},{id:"1716",name:"指南针",type:"可回收",count:"225"},{id:"1715",name:"棕榈蜡",type:"可回收",count:"110"},{id:"1702",name:"纸牌",type:"可回收",count:"2272"},{id:"1701",name:"真空压缩袋",type:"可回收",count:"159"},{id:"1700",name:"指甲钳",type:"可回收",count:"2184"},{id:"1699",name:"纸袋子",type:"可回收",count:"2950"},{id:"1698",name:"砧板",type:"可回收",count:"111"},{id:"1697",name:"主板",type:"可回收",count:"106"},{id:"1696",name:"钟表",type:"可回收",count:"152"},{id:"1695",name:"纸盒",type:"可回收",count:"3220"},{id:"1694",name:"纸板箱",type:"可回收",count:"2471"},{id:"1703",name:"纸塑铝复合包装",type:"可回收",count:"2666"},{id:"1704",name:"砖头",type:"可回收",count:"284"},{id:"1714",name:"纸巾盒",type:"可回收",count:"6338"},{id:"1713",name:"纸质印刷品",type:"可回收",count:"2280"},{id:"1712",name:"纸质礼品盒",type:"可回收",count:"2324"},{id:"1711",name:"纸质卡片",type:"可回收",count:"2323"},{id:"1710",name:"纸质杯套",type:"可回收",count:"2375"},{id:"1708",name:"纸箱",type:"可回收",count:"2922"},{id:"1707",name:"置物架",type:"可回收",count:"89"},{id:"1706",name:"枕套",type:"可回收",count:"148"},{id:"1705",name:"枕头",type:"可回收",count:"285"},{id:"1693",name:"桌布",type:"可回收",count:"313"}]}; --------------------------------------------------------------------------------