SDK隐私政策
手写文字识别:将自然场景下图片上的文字内容,通过定位和检测,智能识别为可编辑的文本信息。手写ocr识别接口与ocr接口非常相似。
Hi,您好,欢迎使用有道智云手写文字识别 API接口服务。
如果您想快速体验服务,建议您前往 体验中心 或者在体验中心右下侧找到小程序二维码,扫描进行体验。
本文档主要针对需要集成HTTP API的技术开发工程师,详细描述OCR识别能力相关的技术内容。
如果您有与我们商务合作的需求,可以通过以下方式联系我们:
商务邮箱: AIcloud_Business@corp.youdao.com
如果您对文档内容有任何疑问,可以通过以下几种方式联系我们:
客服QQ:1906538062
智云OCR技术交流QQ 1群: 654064748
智云OCR技术交流QQ 2群: 471638046
联系邮箱: zhiyun@corp.youdao.com
温馨提示:
应用ID
和应用密钥
;如果您还没有,请按照 新手指南 获取。有道智云OCR API接口提供有道的OCR文字识别服务,目前有道智云OCR支持八十种语言的文字识别。您只需要通过调用有道智云OCR API,传入经过Base64编码的图片,通过POST请求方式,就可以得到相应的文字识别结果。
有道智云OCR API HTTPS地址:
https://openapi.youdao.com/ocr_hand_writing
调用方在集成手写文字识别 API时,请遵循以下规则。
规则 | 描述 |
---|---|
传输方式 | HTTPS |
请求方式 | POST |
字符编码 | 统一使用UTF-8编码 |
响应格式 | 统一采用application/x-www-form-urlencoded格式 |
调用API需要向接口发送以下字段来访问服务。
符号 | 含义 | 必填 | 举例 |
---|---|---|---|
detectType | 识别类型,目前只支持片段识别 | false | 10012 |
langType | 语言类型,en/zh-CHS(英文/中文) | true | en |
imageType | 支持的图片类型,目前只支持Base64 | true | 1 |
appKey | 应用申请的key,可在应用管理查看 | true | testKey |
img | 要识别的图片,目前只支持Base64编码,图片的base64编码是不包含图片头的,如(data:image/jpg;base64,) | true | |
curtime | 时间戳 | true | |
sign | 签名,通过sha256(appKey+input+curtime+salt+appSecret) 生成 | true | whatever |
salt | 随机值 | true | whatever |
angle | 是否支持角度识别,0:否;1是,默认为0 | false | 1 |
signType | 签名类型 | true | v3 |
docType | 服务器响应类型,目前只支持json | false | json |
concatLines | 是否是行图拼接起来的图,0:否;1:是;默认为0 | false | 0 |
input=img字符串的前10个字符 + img字符串长度 + img字符串后十个字符(当q长度大于20)或 img字符串(当q长度小于等于20).
具体示例如下:
a.比如:img="Welcome to youdao AICloud.",字符串长度为26,大于20,其input="Welcome to"(前10个字符) + 26(字符串长度) + "o AICloud."(q字符串后10个字符)。
b.比如:img = "sdT4bWrjS",字符串长度为9,小于20,input = "sdT4bWrjS".不同语言获取时间戳,请参看此链接
如果对签名有疑问,可以参看文档末尾各语言demo。
返回的结果是json格式,具体说明如下:
字段 | 类型 | 字段说明 |
---|---|---|
errorCode | text | 错误码 |
requestId | jsonObject | 接口返回的请求信息id |
Result | jsonObject | 识别结果 |
scene | String | 场景 |
paragraphs | jsonArray | 段落数组 |
-orientation | text | 识别方向 |
-regions | text | 区域 |
--boundingBox | text | 识别区域坐标 |
--dir | text | 方向:行或列 |
--lines | jsonArray | 行数组 |
---boundingBox | text | 行坐标信息 |
---text | text | 识别的内容 |
---lang | text | 语种 |
boundingBox共八个值:分别是左上角坐标(x,y),右上角坐标(x,y),右下角坐标(x,y),左下角(x,y)。
具体可参见下面的参考示例。
{
"requestId": "a531f8c5-0a27-40b2-8f2b-98da9c13aba7",
"errorCode": "0",
"Result": {
"orientation": "",
"regions": [{
"boundingBox": "79,93,639,93,639,200,79,200",
"dir": "h",
"lang": "en",
"lines": [{
"boundingBox": "82,93,636,93,636,117,82,117",
"text_height": 22,
"words": [{
"boundingBox": "82,95,158,95,158,117,82,117",
"word": "competitors"
}, {
"boundingBox": "167,95,222,95,222,117,167,117",
"word": "operating"
}, {
"boundingBox": "230,95,271,95,271,117,230,117",
"word": "without"
}, {
"boundingBox": "279,95,293,95,293,117,279,117",
"word": "the"
}, {
"boundingBox": "301,95,334,95,334,117,301,117",
"word": "unfair"
}, {
"boundingBox": "340,95,406,95,406,117,340,117",
"word": "advantages"
}, {
"boundingBox": "414,95,436,95,436,117,414,117",
"word": "that"
}, {
"boundingBox": "444,95,480,94,480,116,444,117",
"word": "Beijing"
}, {
"boundingBox": "488,94,538,94,538,116,488,116",
"word": "provides"
}, {
"boundingBox": "543,94,551,94,551,116,543,116",
"word": "to"
}, {
"boundingBox": "557,94,571,94,571,116,557,116",
"word": "its"
}, {
"boundingBox": "576,94,609,94,609,116,576,116",
"word": "firms."
}, {
"boundingBox": "620,93,636,93,636,115,620,115",
"word": "The"
}],
"text": "competitors operating without the unfair advantages that Beijing provides to its firms. The",
"lang": "en"
}, {
"boundingBox": "82,110,636,110,636,139,82,139",
"text_height": 25,
"words": [{
"boundingBox": "82,114,156,114,156,139,82,139",
"word": "PRCretains"
}, {
"boundingBox": "159,114,175,114,175,139,159,139",
"word": "its"
}, {
"boundingBox": "181,114,250,114,250,139,181,139",
"word": "non-market"
}, {
"boundingBox": "256,114,309,114,309,139,256,139",
"word": "economic"
}, {
"boundingBox": "315,114,368,114,368,139,315,139",
"word": "structure"
}, {
"boundingBox": "375,114,393,114,393,139,375,139",
"word": "and"
}, {
"boundingBox": "400,114,456,114,456,139,400,139",
"word": "state-led,"
}, {
"boundingBox": "459,114,530,113,530,138,459,139",
"word": "mercantilist"
}, {
"boundingBox": "534,113,587,111,587,136,534,138",
"word": "approach"
}, {
"boundingBox": "593,111,602,111,602,136,593,136",
"word": "to"
}, {
"boundingBox": "608,111,636,110,636,135,608,136",
"word": "trade"
}],
"text": "PRCretains its non-market economic structure and state-led, mercantilist approach to trade",
"lang": "en"
}, {
"boundingBox": "82,134,639,134,639,160,82,160",
"text_height": 25,
"words": [{
"boundingBox": "82,134,106,134,106,159,82,159",
"word": "and"
}, {
"boundingBox": "116,134,159,135,159,160,116,159",
"word": "invest"
}, {
"boundingBox": "165,135,184,135,184,160,165,160",
"word": "cnt"
}, {
"boundingBox": "196,135,249,135,249,160,196,160",
"word": "epaltical"
}, {
"boundingBox": "255,135,302,135,302,160,255,160",
"word": "reforms"
}, {
"boundingBox": "311,135,395,135,395,160,311,160",
"word": "havekewise"
}, {
"boundingBox": "401,135,460,134,460,159,401,160",
"word": "atrophied"
}, {
"boundingBox": "469,134,488,134,488,159,469,159",
"word": "and"
}, {
"boundingBox": "500,134,525,134,525,159,500,159",
"word": "gone"
}, {
"boundingBox": "531,134,556,134,556,159,531,159",
"word": "into"
}, {
"boundingBox": "565,134,612,134,612,159,565,159",
"word": "reverse,"
}, {
"boundingBox": "618,134,639,134,639,159,618,159",
"word": "and"
}],
"text": "and invest cnt epaltical reforms havekewise atrophied and gone into reverse, and",
"lang": "en"
}, {
"boundingBox": "79,156,636,156,636,181,79,181",
"text_height": 25,
"words": [{
"boundingBox": "79,156,134,156,134,181,79,181",
"word": "decision"
}, {
"boundingBox": "144,156,153,156,153,181,144,181",
"word": "to"
}, {
"boundingBox": "162,156,203,156,203,181,162,181",
"word": "remove"
}, {
"boundingBox": "215,156,283,156,283,181,215,181",
"word": "presidential"
}, {
"boundingBox": "292,156,317,156,317,181,292,181",
"word": "term"
}, {
"boundingBox": "323,156,364,156,364,181,323,181",
"word": "limits,"
}, {
"boundingBox": "367,156,429,156,429,181,367,181",
"word": "effectively"
}, {
"boundingBox": "435,156,494,156,494,181,435,181",
"word": "extending"
}, {
"boundingBox": "500,156,516,156,516,181,500,181",
"word": "his"
}, {
"boundingBox": "525,156,559,156,559,181,525,181",
"word": "tenure"
}, {
"boundingBox": "568,156,636,156,636,181,568,181",
"word": "indefinitely."
}],
"text": "decision to remove presidential term limits, effectively extending his tenure indefinitely.",
"lang": "en"
}, {
"boundingBox": "82,177,230,177,230,200,82,200",
"text_height": 22,
"words": [{
"boundingBox": "82,178,150,177,150,199,82,200",
"word": "epitomized"
}, {
"boundingBox": "159,177,189,177,189,199,159,199",
"word": "these"
}, {
"boundingBox": "195,177,230,177,230,199,195,199",
"word": "trends"
}],
"text": "epitomized these trends",
"lang": "en"
}]
}, {
"boundingBox": "79,210,639,210,639,397,79,397",
"dir": "h",
"lang": "en",
"lines": [{
"boundingBox": "79,210,639,210,639,237,79,237",
"text_height": 25,
"words": [{
"boundingBox": "79,211,97,211,97,236,79,236",
"word": "In"
}, {
"boundingBox": "107,211,119,211,119,236,107,236",
"word": "his"
}, {
"boundingBox": "128,211,156,212,156,237,128,236",
"word": "2018"
}, {
"boundingBox": "166,212,213,212,213,237,166,237",
"word": "Findings"
}, {
"boundingBox": "219,212,228,212,228,237,219,237",
"word": "of"
}, {
"boundingBox": "234,212,250,212,250,237,234,237",
"word": "the"
}, {
"boundingBox": "256,212,331,212,331,237,256,237",
"word": "Investigation"
}, {
"boundingBox": "337,212,359,211,359,236,337,237",
"word": "into"
}, {
"boundingBox": "368,211,406,211,406,236,368,236",
"word": "China's"
}, {
"boundingBox": "415,211,440,211,440,236,415,236",
"word": "Acts,"
}, {
"boundingBox": "446,211,493,211,493,236,446,236",
"word": "Policies,"
}, {
"boundingBox": "496,211,515,211,515,236,496,236",
"word": "and"
}, {
"boundingBox": "524,211,574,211,574,236,524,236",
"word": "Practices"
}, {
"boundingBox": "583,210,624,210,624,235,583,235",
"word": "Related"
}, {
"boundingBox": "630,210,639,210,639,235,630,235",
"word": "to"
}],
"text": "In his 2018 Findings of the Investigation into China's Acts, Policies, and Practices Related to",
"lang": "en"
}, {
"boundingBox": "82,233,636,233,636,259,82,259",
"text_height": 25,
"words": [{
"boundingBox": "82,233,153,234,153,259,82,258",
"word": "Technalogy"
}, {
"boundingBox": "159,234,206,234,206,259,159,259",
"word": "Transter"
}, {
"boundingBox": "216,234,281,234,281,259,216,259",
"word": "Intellectual"
}, {
"boundingBox": "287,234,340,234,340,259,287,259",
"word": "Property,"
}, {
"boundingBox": "347,234,362,234,362,259,347,259",
"word": "and"
}, {
"boundingBox": "368,234,431,233,431,258,368,259",
"word": "looMIsi"
}, {
"boundingBox": "437,233,471,233,471,258,437,258",
"word": "under"
}, {
"boundingBox": "477,233,515,233,515,258,477,258",
"word": "Section"
}, {
"boundingBox": "524,233,540,233,540,258,524,258",
"word": "301"
}, {
"boundingBox": "546,233,555,233,555,258,546,258",
"word": "of"
}, {
"boundingBox": "562,233,577,233,577,258,562,258",
"word": "the"
}, {
"boundingBox": "587,233,615,233,615,258,587,258",
"word": "Trade"
}, {
"boundingBox": "624,233,636,233,636,258,624,258",
"word": "Ac"
}],
"text": "Technalogy Transter Intellectual Property, and looMIsi under Section 301 of the Trade Ac",
"lang": "en"
}, {
"boundingBox": "79,252,636,252,636,280,79,280",
"text_height": 25,
"words": [{
"boundingBox": "79,254,137,255,137,280,79,279",
"word": "policies,"
}, {
"boundingBox": "144,255,162,255,162,280,144,280",
"word": "and"
}, {
"boundingBox": "172,255,224,255,224,280,172,280",
"word": "practices"
}, {
"boundingBox": "230,255,240,255,240,280,230,280",
"word": "of"
}, {
"boundingBox": "246,255,261,255,261,280,246,280",
"word": "the"
}, {
"boundingBox": "274,255,292,255,292,280,274,280",
"word": "PRC"
}, {
"boundingBox": "302,255,373,255,373,280,302,280",
"word": "government"
}, {
"boundingBox": "382,255,407,255,407,280,382,280",
"word": "were"
}, {
"boundingBox": "416,255,494,254,494,279,416,280",
"word": "unreasonable"
}, {
"boundingBox": "503,254,513,254,513,279,503,279",
"word": "or"
}, {
"boundingBox": "522,254,636,252,636,277,522,279",
"word": "discriminatory.t"
}],
"text": "policies, and practices of the PRC government were unreasonable or discriminatory.t",
"lang": "en"
}, {
"boundingBox": "82,273,636,273,636,298,82,298",
"text_height": 22,
"words": [{
"boundingBox": "82,273,128,274,128,296,82,295",
"word": "burden"
}, {
"boundingBox": "136,274,145,274,145,296,136,296",
"word": "or"
}, {
"boundingBox": "153,275,194,275,194,297,153,297",
"word": "restrict"
}, {
"boundingBox": "202,275,238,276,238,298,202,297",
"word": "United"
}, {
"boundingBox": "246,276,279,276,279,298,246,298",
"word": "States"
}, {
"boundingBox": "288,276,351,276,351,298,288,298",
"word": "commerce."
}, {
"boundingBox": "362,276,392,276,392,298,362,298",
"word": "Based"
}, {
"boundingBox": "400,276,411,276,411,298,400,298",
"word": "on"
}, {
"boundingBox": "419,276,422,276,422,298,419,298",
"word": "a"
}, {
"boundingBox": "428,276,477,276,477,298,428,298",
"word": "rigorous"
}, {
"boundingBox": "483,276,565,275,565,297,483,298",
"word": "investigation,"
}, {
"boundingBox": "571,275,598,275,598,297,571,297",
"word": "USTR"
}, {
"boundingBox": "606,275,636,274,636,296,606,297",
"word": "found"
}],
"text": "burden or restrict United States commerce. Based on a rigorous investigation, USTR found",
"lang": "en"
}, {
"boundingBox": "82,292,636,292,636,318,82,318",
"text_height": 22,
"words": [{
"boundingBox": "82,292,109,292,109,314,82,314",
"word": "that"
}, {
"boundingBox": "114,292,131,293,131,315,114,314",
"word": "the"
}, {
"boundingBox": "139,293,164,293,164,315,139,315",
"word": "PRC:"
}, {
"boundingBox": "172,293,189,293,189,315,172,315",
"word": "(1)"
}, {
"boundingBox": "194,293,241,294,241,316,194,315",
"word": "requires"
}, {
"boundingBox": "249,294,257,294,257,316,249,316",
"word": "or"
}, {
"boundingBox": "266,294,321,295,321,317,266,316",
"word": "pressures"
}, {
"boundingBox": "326,295,362,295,362,317,326,317",
"word": "United"
}, {
"boundingBox": "370,295,403,295,403,317,370,317",
"word": "States"
}, {
"boundingBox": "411,295,472,296,472,318,411,317",
"word": "companies"
}, {
"boundingBox": "477,296,485,296,485,318,477,318",
"word": "to"
}, {
"boundingBox": "491,296,538,295,538,317,491,318",
"word": "transfer"
}, {
"boundingBox": "543,295,571,295,571,317,543,317",
"word": "their"
}, {
"boundingBox": "576,295,636,294,636,316,576,317",
"word": "technology"
}],
"text": "that the PRC: (1) requires or pressures United States companies to transfer their technology",
"lang": "en"
}, {
"boundingBox": "82,313,636,313,636,337,82,337",
"text_height": 22,
"words": [{
"boundingBox": "82,313,98,313,98,335,82,335",
"word": "to"
}, {
"boundingBox": "106,313,147,314,147,336,106,335",
"word": "Chinese"
}, {
"boundingBox": "156,314,202,314,202,336,156,336",
"word": "entities:"
}, {
"boundingBox": "208,314,224,314,224,336,208,336",
"word": "(2)"
}, {
"boundingBox": "230,314,263,314,263,336,230,336",
"word": "places"
}, {
"boundingBox": "271,314,334,314,334,336,271,336",
"word": "substantial"
}, {
"boundingBox": "340,314,406,315,406,337,340,336",
"word": "restrictions"
}, {
"boundingBox": "414,315,425,315,425,337,414,337",
"word": "on"
}, {
"boundingBox": "433,315,469,315,469,337,433,337",
"word": "United"
}, {
"boundingBox": "477,315,510,315,510,337,477,337",
"word": "States"
}, {
"boundingBox": "518,315,582,315,582,337,518,337",
"word": "companies'"
}, {
"boundingBox": "587,315,623,315,623,337,587,337",
"word": "ability"
}, {
"boundingBox": "628,315,636,315,636,337,628,337",
"word": "to"
}],
"text": "to Chinese entities: (2) places substantial restrictions on United States companies' ability to",
"lang": "en"
}, {
"boundingBox": "82,335,636,335,636,357,82,357",
"text_height": 22,
"words": [{
"boundingBox": "82,335,125,335,125,357,82,357",
"word": "license"
}, {
"boundingBox": "134,335,161,335,161,357,134,357",
"word": "thelr"
}, {
"boundingBox": "167,335,230,335,230,357,167,357",
"word": "technology"
}, {
"boundingBox": "238,335,252,335,252,357,238,357",
"word": "on"
}, {
"boundingBox": "260,335,299,335,299,357,260,357",
"word": "market"
}, {
"boundingBox": "304,335,343,335,343,357,304,357",
"word": "terms:"
}, {
"boundingBox": "348,335,364,335,364,357,348,357",
"word": "(3)"
}, {
"boundingBox": "370,335,411,335,411,357,370,357",
"word": "directs"
}, {
"boundingBox": "417,335,436,335,436,357,417,357",
"word": "and"
}, {
"boundingBox": "444,335,488,335,488,357,444,357",
"word": "unfalrly"
}, {
"boundingBox": "496,335,551,335,551,357,496,357",
"word": "facilitates"
}, {
"boundingBox": "560,335,623,335,623,357,560,357",
"word": "acquisition"
}, {
"boundingBox": "631,335,636,335,636,357,631,357",
"word": "of"
}],
"text": "license thelr technology on market terms: (3) directs and unfalrly facilitates acquisition of",
"lang": "en"
}, {
"boundingBox": "82,355,636,355,636,379,82,379",
"text_height": 22,
"words": [{
"boundingBox": "82,356,106,356,106,378,82,378",
"word": "and"
}, {
"boundingBox": "114,356,131,356,131,378,114,378",
"word": "(4)"
}, {
"boundingBox": "136,356,189,356,189,378,136,378",
"word": "canducts"
}, {
"boundingBox": "194,356,211,356,211,378,194,378",
"word": "and"
}, {
"boundingBox": "219,356,268,357,268,379,219,378",
"word": "supports"
}, {
"boundingBox": "277,357,354,356,354,378,277,379",
"word": "unauthorized"
}, {
"boundingBox": "362,356,392,356,392,378,362,378",
"word": "cyber"
}, {
"boundingBox": "397,356,455,356,455,378,397,378",
"word": "intrusions"
}, {
"boundingBox": "461,356,483,356,483,378,461,378",
"word": "into"
}, {
"boundingBox": "491,356,527,356,527,378,491,378",
"word": "United"
}, {
"boundingBox": "535,356,568,356,568,378,535,378",
"word": "States"
}, {
"boundingBox": "573,355,636,355,636,377,573,377",
"word": "companies"
}],
"text": "and (4) canducts and supports unauthorized cyber intrusions into United States companies",
"lang": "en"
}, {
"boundingBox": "82,372,456,372,456,397,82,397",
"text_height": 22,
"words": [{
"boundingBox": "82,375,144,375,144,397,82,397",
"word": "networks"
}, {
"boundingBox": "149,375,158,375,158,397,149,397",
"word": "to"
}, {
"boundingBox": "166,375,201,375,201,397,166,397",
"word": "access"
}, {
"boundingBox": "207,375,255,375,255,397,207,397",
"word": "sensitive"
}, {
"boundingBox": "264,375,332,375,332,397,264,397",
"word": "information"
}, {
"boundingBox": "340,375,356,375,356,397,340,397",
"word": "and"
}, {
"boundingBox": "364,374,391,374,391,396,364,396",
"word": "trade"
}, {
"boundingBox": "399,374,456,372,456,394,399,396",
"word": "secrets."
}],
"text": "networks to access sensitive information and trade secrets.",
"lang": "en"
}]
}, {
"boundingBox": "79,409,636,409,636,718,79,718",
"dir": "h",
"lang": "en",
"lines": [{
"boundingBox": "82,409,636,409,636,434,82,434",
"text_height": 22,
"words": [{
"boundingBox": "82,411,106,411,106,433,82,433",
"word": "The"
}, {
"boundingBox": "114,411,131,411,131,433,114,433",
"word": "list"
}, {
"boundingBox": "139,411,147,411,147,433,139,433",
"word": "of"
}, {
"boundingBox": "156,411,202,412,202,434,156,433",
"word": "Beijing's"
}, {
"boundingBox": "211,412,288,412,288,434,211,434",
"word": "commitments"
}, {
"boundingBox": "296,412,304,412,304,434,296,434",
"word": "to"
}, {
"boundingBox": "312,412,340,412,340,434,312,434",
"word": "cease"
}, {
"boundingBox": "348,412,359,412,359,434,348,434",
"word": "its"
}, {
"boundingBox": "367,412,425,412,425,434,367,434",
"word": "predatory"
}, {
"boundingBox": "433,412,485,412,485,434,433,434",
"word": "economic"
}, {
"boundingBox": "494,412,543,411,543,433,494,434",
"word": "practices"
}, {
"boundingBox": "551,411,557,411,557,433,551,433",
"word": "is"
}, {
"boundingBox": "565,411,606,410,606,432,565,433",
"word": "littered"
}, {
"boundingBox": "617,410,636,409,636,431,617,432",
"word": "with"
}],
"text": "The list of Beijing's commitments to cease its predatory economic practices is littered with",
"lang": "en"
}, {
"boundingBox": "79,432,636,432,636,455,79,455",
"text_height": 22,
"words": [{
"boundingBox": "79,432,128,432,128,454,79,454",
"word": "broken"
}, {
"boundingBox": "136,432,158,432,158,454,136,454",
"word": "and"
}, {
"boundingBox": "166,432,199,432,199,454,166,454",
"word": "empty"
}, {
"boundingBox": "210,432,267,432,267,454,210,454",
"word": "promises."
}, {
"boundingBox": "275,432,286,432,286,454,275,454",
"word": "In"
}, {
"boundingBox": "297,432,327,433,327,455,297,454",
"word": "2015."
}, {
"boundingBox": "336,433,374,433,374,455,336,455",
"word": "Beljing"
}, {
"boundingBox": "382,433,437,433,437,455,382,455",
"word": "promised"
}, {
"boundingBox": "445,433,467,433,467,455,445,455",
"word": "that"
}, {
"boundingBox": "472,433,481,433,481,455,472,455",
"word": "it"
}, {
"boundingBox": "489,433,522,433,522,455,489,455",
"word": "would"
}, {
"boundingBox": "533,433,554,433,554,455,533,455",
"word": "stop"
}, {
"boundingBox": "563,433,636,433,636,455,563,455",
"word": "government-"
}],
"text": "broken and empty promises. In 2015. Beljing promised that it would stop government-",
"lang": "en"
}, {
"boundingBox": "79,452,636,452,636,477,79,477",
"text_height": 22,
"words": [{
"boundingBox": "79,452,133,453,133,475,79,474",
"word": "directed"
}, {
"boundingBox": "161,454,185,454,185,476,161,476",
"word": "2017"
}, {
"boundingBox": "193,454,213,454,213,476,193,476",
"word": "and"
}, {
"boundingBox": "223,454,256,455,256,477,223,476",
"word": "2018."
}, {
"boundingBox": "265,455,295,454,295,476,265,477",
"word": "Later"
}, {
"boundingBox": "300,454,311,454,311,476,300,476",
"word": "in"
}, {
"boundingBox": "319,454,347,454,347,476,319,476",
"word": "2018"
}, {
"boundingBox": "358,454,371,454,371,476,358,476",
"word": "the"
}, {
"boundingBox": "379,454,418,454,418,476,379,476",
"word": "Ilnited"
}, {
"boundingBox": "426,454,467,453,467,475,426,476",
"word": "stercial"
}, {
"boundingBox": "475,453,497,453,497,475,475,475",
"word": "garn"
}, {
"boundingBox": "508,453,541,453,541,475,508,475",
"word": "rester"
}, {
"boundingBox": "544,453,574,453,574,475,544,475",
"word": "ating"
}, {
"boundingBox": "579,453,636,454,636,476,579,475",
"word": "thatntries"
}],
"text": "directed 2017 and 2018. Later in 2018 the Ilnited stercial garn rester ating thatntries",
"lang": "en"
}, {
"boundingBox": "82,473,636,473,636,497,82,497",
"text_height": 22,
"words": [{
"boundingBox": "82,474,147,474,147,496,82,496",
"word": "attributed"
}, {
"boundingBox": "158,474,197,475,197,497,158,496",
"word": "global"
}, {
"boundingBox": "205,475,263,475,263,497,205,497",
"word": "computer"
}, {
"boundingBox": "271,475,329,475,329,497,271,497",
"word": "intrusion"
}, {
"boundingBox": "340,475,406,475,406,497,340,497",
"word": "campaigns,"
}, {
"boundingBox": "414,475,469,474,469,496,414,497",
"word": "targeting"
}, {
"boundingBox": "477,474,546,474,546,496,477,496",
"word": "intellectual"
}, {
"boundingBox": "557,474,609,473,609,495,557,496",
"word": "property"
}, {
"boundingBox": "617,473,636,473,636,495,617,495",
"word": "and"
}],
"text": "attributed global computer intrusion campaigns, targeting intellectual property and",
"lang": "en"
}, {
"boundingBox": "82,490,636,490,636,518,82,518",
"text_height": 25,
"words": [{
"boundingBox": "82,492,159,493,159,518,82,517",
"word": "confidential"
}, {
"boundingBox": "166,493,216,493,216,518,166,518",
"word": "business"
}, {
"boundingBox": "222,493,297,493,297,518,222,518",
"word": "information,"
}, {
"boundingBox": "303,493,312,493,312,518,303,518",
"word": "to"
}, {
"boundingBox": "322,493,378,493,378,518,322,518",
"word": "operators"
}, {
"boundingBox": "384,493,434,493,434,518,384,518",
"word": "affiliated"
}, {
"boundingBox": "446,493,468,493,468,518,446,518",
"word": "with"
}, {
"boundingBox": "474,493,490,492,490,517,474,518",
"word": "the"
}, {
"boundingBox": "499,492,530,492,530,517,499,517",
"word": "PRC's"
}, {
"boundingBox": "540,492,587,491,587,516,540,517",
"word": "Ministry"
}, {
"boundingBox": "596,491,605,491,605,516,596,516",
"word": "of"
}, {
"boundingBox": "612,491,636,490,636,515,612,516",
"word": "State"
}],
"text": "confidential business information, to operators affiliated with the PRC's Ministry of State",
"lang": "en"
}, {
"boundingBox": "82,510,636,510,636,535,82,535",
"text_height": 22,
"words": [{
"boundingBox": "82,512,153,513,153,535,82,534",
"word": "Security-a"
}, {
"boundingBox": "161,513,241,513,241,535,161,535",
"word": "contravention"
}, {
"boundingBox": "246,513,257,513,257,535,246,535",
"word": "of"
}, {
"boundingBox": "263,513,310,513,310,535,263,535",
"word": "Beijing's"
}, {
"boundingBox": "318,513,343,512,343,534,318,535",
"word": "2015"
}, {
"boundingBox": "351,512,428,512,428,534,351,534",
"word": "commitment."
}, {
"boundingBox": "436,511,463,511,463,533,436,533",
"word": "Since"
}, {
"boundingBox": "469,511,485,511,485,533,469,533",
"word": "the"
}, {
"boundingBox": "491,511,529,510,529,532,491,533",
"word": "1980s,"
}, {
"boundingBox": "538,510,573,510,573,532,538,532",
"word": "Beijing"
}, {
"boundingBox": "579,510,595,510,595,532,579,532",
"word": "has"
}, {
"boundingBox": "601,510,636,510,636,532,601,532",
"word": "signed"
}],
"text": "Security-a contravention of Beijing's 2015 commitment. Since the 1980s, Beijing has signed",
"lang": "en"
}, {
"boundingBox": "82,526,636,526,636,555,82,555",
"text_height": 25,
"words": [{
"boundingBox": "82,527,138,529,138,554,82,552",
"word": "multiple"
}, {
"boundingBox": "144,529,222,530,222,555,144,554",
"word": "international"
}, {
"boundingBox": "225,530,294,529,294,554,225,555",
"word": "agreements"
}, {
"boundingBox": "300,529,309,529,309,554,300,554",
"word": "to"
}, {
"boundingBox": "318,529,359,529,359,554,318,554",
"word": "protect"
}, {
"boundingBox": "365,529,431,528,431,553,365,554",
"word": "intellectual"
}, {
"boundingBox": "437,528,493,527,493,552,437,553",
"word": "property."
}, {
"boundingBox": "502,527,543,526,543,551,502,552",
"word": "Despite"
}, {
"boundingBox": "549,526,574,526,574,551,549,551",
"word": "this,"
}, {
"boundingBox": "580,526,608,526,608,551,580,551",
"word": "more"
}, {
"boundingBox": "615,526,636,526,636,551,615,551",
"word": "than"
}],
"text": "multiple international agreements to protect intellectual property. Despite this, more than",
"lang": "en"
}, {
"boundingBox": "82,544,636,544,636,573,82,573",
"text_height": 22,
"words": [{
"boundingBox": "82,549,101,550,101,572,82,571",
"word": "63"
}, {
"boundingBox": "109,550,150,551,150,573,109,572",
"word": "percent"
}, {
"boundingBox": "158,551,167,551,167,573,158,573",
"word": "of"
}, {
"boundingBox": "175,551,191,551,191,573,175,573",
"word": "the"
}, {
"boundingBox": "200,551,241,551,241,573,200,573",
"word": "world's"
}, {
"boundingBox": "249,551,318,550,318,572,249,573",
"word": "counterfelts"
}, {
"boundingBox": "326,550,378,549,378,571,326,572",
"word": "originate"
}, {
"boundingBox": "384,549,392,549,392,571,384,571",
"word": "in"
}, {
"boundingBox": "403,549,439,548,439,570,403,571",
"word": "China,"
}, {
"boundingBox": "444,548,494,547,494,569,444,570",
"word": "inflicting"
}, {
"boundingBox": "502,547,557,545,557,567,502,569",
"word": "hundreds"
}, {
"boundingBox": "565,545,573,545,573,567,565,567",
"word": "of"
}, {
"boundingBox": "582,545,623,544,623,566,582,567",
"word": "billions"
}, {
"boundingBox": "631,544,636,544,636,566,631,566",
"word": "of"
}],
"text": "63 percent of the world's counterfelts originate in China, inflicting hundreds of billions of",
"lang": "en"
}, {
"boundingBox": "97,562,426,562,426,591,97,591",
"text_height": 25,
"words": [{
"boundingBox": "97,566,128,564,128,589,97,591",
"word": "llars"
}, {
"boundingBox": "134,564,143,564,143,589,134,589",
"word": "of"
}, {
"boundingBox": "149,564,193,563,193,588,149,589",
"word": "damage"
}, {
"boundingBox": "199,563,209,563,209,588,199,588",
"word": "on"
}, {
"boundingBox": "215,563,277,564,277,589,215,588",
"word": "legitimate"
}, {
"boundingBox": "283,564,346,564,346,589,283,589",
"word": "businesses"
}, {
"boundingBox": "352,564,389,564,389,589,352,589",
"word": "around"
}, {
"boundingBox": "398,563,414,563,414,588,398,588",
"word": "the"
}, {
"boundingBox": "423,563,426,562,426,587,423,588",
"word": "w"
}],
"text": "llars of damage on legitimate businesses around the w",
"lang": "en"
}, {
"boundingBox": "82,589,636,589,636,618,82,618",
"text_height": 25,
"words": [{
"boundingBox": "82,589,122,591,122,616,82,614",
"word": "While"
}, {
"boundingBox": "131,591,169,592,169,617,131,616",
"word": "Beljing"
}, {
"boundingBox": "175,592,259,592,259,617,175,617",
"word": "acknowledges"
}, {
"boundingBox": "265,592,287,592,287,617,265,617",
"word": "that"
}, {
"boundingBox": "297,592,325,591,325,616,297,617",
"word": "China"
}, {
"boundingBox": "334,591,340,591,340,616,334,616",
"word": "is"
}, {
"boundingBox": "350,591,371,591,371,616,350,616",
"word": "now"
}, {
"boundingBox": "381,591,384,591,384,616,381,616",
"word": "a"
}, {
"boundingBox": "390,591,437,590,437,615,390,616",
"word": "\"mature"
}, {
"boundingBox": "446,590,506,590,506,615,446,615",
"word": "economy,\""
}, {
"boundingBox": "512,590,527,590,527,615,512,615",
"word": "the"
}, {
"boundingBox": "537,590,559,591,559,616,537,615",
"word": "PRC"
}, {
"boundingBox": "568,591,624,592,624,617,568,616",
"word": "continues"
}, {
"boundingBox": "630,592,636,593,636,618,630,617",
"word": "to"
}],
"text": "While Beljing acknowledges that China is now a \"mature economy,\" the PRC continues to",
"lang": "en"
}, {
"boundingBox": "79,610,636,610,636,636,79,636",
"text_height": 22,
"words": [{
"boundingBox": "79,614,120,614,120,636,79,636",
"word": "argue"
}, {
"boundingBox": "125,614,133,613,133,635,125,636",
"word": "in"
}, {
"boundingBox": "139,613,150,613,150,635,139,635",
"word": "its"
}, {
"boundingBox": "158,613,204,613,204,635,158,635",
"word": "dealings"
}, {
"boundingBox": "213,613,234,612,234,634,213,635",
"word": "with"
}, {
"boundingBox": "240,612,316,611,316,633,240,634",
"word": "international"
}, {
"boundingBox": "325,611,363,611,363,633,325,633",
"word": "bodies,"
}, {
"boundingBox": "368,611,420,610,420,632,368,633",
"word": "including"
}, {
"boundingBox": "426,610,442,610,442,632,426,632",
"word": "the"
}, {
"boundingBox": "451,610,481,610,481,632,451,632",
"word": "WTo,"
}, {
"boundingBox": "486,610,516,610,516,632,486,632",
"word": "thatit"
}, {
"boundingBox": "522,610,530,610,530,632,522,632",
"word": "is"
}, {
"boundingBox": "535,611,557,611,557,633,535,633",
"word": "still"
}, {
"boundingBox": "560,611,563,611,563,633,560,633",
"word": "a"
}, {
"boundingBox": "568,611,636,613,636,635,568,633",
"word": "\"developing"
}],
"text": "argue in its dealings with international bodies, including the WTo, thatit is still a \"developing",
"lang": "en"
}, {
"boundingBox": "79,630,636,630,636,655,79,655",
"text_height": 22,
"words": [{
"boundingBox": "79,633,144,632,144,654,79,655",
"word": "country.\""
}, {
"boundingBox": "155,632,193,631,193,653,155,654",
"word": "Despite"
}, {
"boundingBox": "204,631,232,631,232,653,204,653",
"word": "being"
}, {
"boundingBox": "240,631,254,631,254,653,240,653",
"word": "the"
}, {
"boundingBox": "262,631,278,631,278,653,262,653",
"word": "top"
}, {
"boundingBox": "286,631,338,631,338,653,286,653",
"word": "importer"
}, {
"boundingBox": "347,631,355,631,355,653,347,653",
"word": "of"
}, {
"boundingBox": "363,631,385,631,385,653,363,653",
"word": "high"
}, {
"boundingBox": "393,631,456,631,456,653,393,653",
"word": "technology"
}, {
"boundingBox": "464,631,513,631,513,653,464,653",
"word": "products"
}, {
"boundingBox": "522,630,541,630,541,652,522,652",
"word": "and"
}, {
"boundingBox": "549,630,590,630,590,652,549,652",
"word": "ranking"
}, {
"boundingBox": "598,630,636,630,636,652,598,652",
"word": "second"
}],
"text": "country.\" Despite being the top importer of high technology products and ranking second",
"lang": "en"
}, {
"boundingBox": "82,650,636,650,636,675,82,675",
"text_height": 22,
"words": [{
"boundingBox": "82,653,112,653,112,675,82,675",
"word": "only"
}, {
"boundingBox": "117,653,125,653,125,675,117,675",
"word": "to"
}, {
"boundingBox": "131,653,194,653,194,675,131,675",
"word": "thercted"
}, {
"boundingBox": "202,653,266,653,266,675,202,675",
"word": "celcdester"
}, {
"boundingBox": "271,653,285,652,285,674,271,675",
"word": "ns"
}, {
"boundingBox": "293,652,301,652,301,674,293,674",
"word": "of"
}, {
"boundingBox": "307,652,334,652,334,674,307,674",
"word": "gross"
}, {
"boundingBox": "343,652,395,652,395,674,343,674",
"word": "domestic"
}, {
"boundingBox": "400,652,450,652,450,674,400,674",
"word": "product."
}, {
"boundingBox": "452,652,496,652,496,674,452,674",
"word": "detense"
}, {
"boundingBox": "505,651,560,651,560,673,505,673",
"word": "spending,"
}, {
"boundingBox": "565,651,582,651,582,673,565,673",
"word": "and"
}, {
"boundingBox": "590,651,636,650,636,672,590,673",
"word": "outward"
}],
"text": "only to thercted celcdester ns of gross domestic product. detense spending, and outward",
"lang": "en"
}, {
"boundingBox": "82,672,636,672,636,696,82,696",
"text_height": 22,
"words": [{
"boundingBox": "82,674,112,674,112,696,82,696",
"word": "that"
}, {
"boundingBox": "117,673,200,673,200,695,117,695",
"word": "systematically"
}, {
"boundingBox": "208,672,246,672,246,694,208,694",
"word": "distort"
}, {
"boundingBox": "255,672,301,672,301,694,255,694",
"word": "multiple"
}, {
"boundingBox": "310,672,351,672,351,694,310,694",
"word": "sectors"
}, {
"boundingBox": "359,672,408,672,408,694,359,694",
"word": "globally,"
}, {
"boundingBox": "414,672,463,672,463,694,414,694",
"word": "harming"
}, {
"boundingBox": "469,672,485,672,485,694,469,694",
"word": "the"
}, {
"boundingBox": "496,672,532,672,532,694,496,694",
"word": "United"
}, {
"boundingBox": "540,672,573,672,573,694,540,694",
"word": "States"
}, {
"boundingBox": "582,672,601,672,601,694,582,694",
"word": "and"
}, {
"boundingBox": "609,672,636,672,636,694,609,694",
"word": "other"
}],
"text": "that systematically distort multiple sectors globally, harming the United States and other",
"lang": "en"
}, {
"boundingBox": "82,690,156,690,156,715,82,715",
"text_height": 25,
"words": [{
"boundingBox": "82,690,156,690,156,715,82,715",
"word": "countries."
}],
"text": "countries.",
"lang": "en"
}, {
"boundingBox": "503,678,537,678,537,718,503,718",
"text_height": 40,
"words": [{
"boundingBox": "503,678,537,678,537,718,503,718",
"word": "ited"
}],
"text": "ited",
"lang": "en"
}]
}, {
"boundingBox": "82,725,639,725,639,866,82,866",
"dir": "h",
"lang": "en",
"lines": [{
"boundingBox": "82,725,636,725,636,753,82,753",
"text_height": 25,
"words": [{
"boundingBox": "82,728,110,728,110,753,82,753",
"word": "One"
}, {
"boundingBox": "119,727,141,727,141,752,119,752",
"word": "Belt"
}, {
"boundingBox": "147,727,166,727,166,752,147,752",
"word": "One"
}, {
"boundingBox": "175,727,203,726,203,751,175,752",
"word": "Road"
}, {
"boundingBox": "212,726,256,726,256,751,212,751",
"word": "(OBOR)"
}, {
"boundingBox": "262,726,272,726,272,751,262,751",
"word": "is"
}, {
"boundingBox": "281,726,328,727,328,752,281,751",
"word": "Beijing's"
}, {
"boundingBox": "334,727,387,727,387,752,334,752",
"word": "umbrella"
}, {
"boundingBox": "393,727,421,727,421,752,393,752",
"word": "term"
}, {
"boundingBox": "428,727,437,727,437,752,428,752",
"word": "to"
}, {
"boundingBox": "446,727,493,727,493,752,446,752",
"word": "describe"
}, {
"boundingBox": "502,727,506,727,506,752,502,752",
"word": "a"
}, {
"boundingBox": "515,727,555,727,555,752,515,752",
"word": "variety"
}, {
"boundingBox": "562,727,571,727,571,752,562,752",
"word": "of"
}, {
"boundingBox": "577,727,636,725,636,750,577,752",
"word": "initiatives."
}],
"text": "One Belt One Road (OBOR) is Beijing's umbrella term to describe a variety of initiatives.",
"lang": "en"
}, {
"boundingBox": "82,747,639,747,639,774,82,774",
"text_height": 25,
"words": [{
"boundingBox": "82,747,119,748,119,773,82,772",
"word": "many"
}, {
"boundingBox": "125,748,134,748,134,773,125,773",
"word": "of"
}, {
"boundingBox": "144,748,171,749,171,774,144,773",
"word": "which"
}, {
"boundingBox": "181,749,221,749,221,774,181,774",
"word": "appear"
}, {
"boundingBox": "227,749,277,749,277,774,227,774",
"word": "designed"
}, {
"boundingBox": "283,749,292,749,292,774,283,774",
"word": "to"
}, {
"boundingBox": "299,749,342,749,342,774,299,774",
"word": "reshape"
}, {
"boundingBox": "348,749,429,748,429,773,348,774",
"word": "international"
}, {
"boundingBox": "435,748,472,748,472,773,435,773",
"word": "norms,"
}, {
"boundingBox": "478,748,540,748,540,773,478,773",
"word": "standards,"
}, {
"boundingBox": "543,748,562,748,562,773,543,773",
"word": "and"
}, {
"boundingBox": "568,748,624,748,624,773,568,773",
"word": "networks"
}, {
"boundingBox": "630,748,639,748,639,773,630,773",
"word": "to"
}],
"text": "many of which appear designed to reshape international norms, standards, and networks to",
"lang": "en"
}, {
"boundingBox": "82,769,639,769,639,793,82,793",
"text_height": 22,
"words": [{
"boundingBox": "82,769,172,770,172,792,82,791",
"word": "advancemenls"
}, {
"boundingBox": "183,770,226,771,226,793,183,792",
"word": "Throueh"
}, {
"boundingBox": "237,771,268,771,268,793,237,793",
"word": "OBOR"
}, {
"boundingBox": "273,771,292,771,292,793,273,793",
"word": "and"
}, {
"boundingBox": "300,771,330,771,330,793,300,793",
"word": "other"
}, {
"boundingBox": "336,771,399,771,399,793,336,793",
"word": "initlatives."
}, {
"boundingBox": "402,771,418,771,418,793,402,793",
"word": "the"
}, {
"boundingBox": "426,770,525,770,525,792,426,792",
"word": "PRCisevmanding"
}, {
"boundingBox": "530,770,547,770,547,792,530,792",
"word": "the"
}, {
"boundingBox": "552,770,574,770,574,792,552,792",
"word": "lise"
}, {
"boundingBox": "579,770,639,770,639,792,579,792",
"word": "ofChinese"
}],
"text": "advancemenls Throueh OBOR and other initlatives. the PRCisevmanding the lise ofChinese",
"lang": "en"
}, {
"boundingBox": "82,788,636,788,636,814,82,814",
"text_height": 22,
"words": [{
"boundingBox": "82,788,145,791,145,813,82,810",
"word": "industrial"
}, {
"boundingBox": "153,791,211,792,211,814,153,813",
"word": "standards"
}, {
"boundingBox": "219,792,230,792,230,814,219,814",
"word": "in"
}, {
"boundingBox": "238,792,257,792,257,814,238,814",
"word": "key"
}, {
"boundingBox": "266,792,332,792,332,814,266,814",
"word": "technology"
}, {
"boundingBox": "340,792,384,791,384,813,340,814",
"word": "sectors,"
}, {
"boundingBox": "392,791,417,791,417,813,392,813",
"word": "part"
}, {
"boundingBox": "425,791,433,791,433,813,425,813",
"word": "of"
}, {
"boundingBox": "441,790,452,790,452,812,441,812",
"word": "an"
}, {
"boundingBox": "463,790,494,790,494,812,463,812",
"word": "effort"
}, {
"boundingBox": "502,790,513,790,513,812,502,812",
"word": "to"
}, {
"boundingBox": "521,790,584,789,584,811,521,812",
"word": "strengthen"
}, {
"boundingBox": "593,789,606,789,606,811,593,811",
"word": "its"
}, {
"boundingBox": "615,789,636,790,636,812,615,811",
"word": "own"
}],
"text": "industrial standards in key technology sectors, part of an effort to strengthen its own",
"lang": "en"
}, {
"boundingBox": "89,806,636,806,636,830,89,830",
"text_height": 22,
"words": [{
"boundingBox": "89,807,157,808,157,830,89,829",
"word": "companies'"
}, {
"boundingBox": "162,808,206,808,206,830,162,830",
"word": "position"
}, {
"boundingBox": "212,808,220,808,220,830,212,830",
"word": "in"
}, {
"boundingBox": "228,808,242,808,242,830,228,830",
"word": "the"
}, {
"boundingBox": "250,808,286,808,286,830,250,830",
"word": "global"
}, {
"boundingBox": "291,808,363,808,363,830,291,830",
"word": "marketplace"
}, {
"boundingBox": "368,808,376,808,376,830,368,830",
"word": "at"
}, {
"boundingBox": "384,808,398,808,398,830,384,830",
"word": "the"
}, {
"boundingBox": "406,807,450,807,450,829,406,829",
"word": "expense"
}, {
"boundingBox": "458,807,467,807,467,829,458,829",
"word": "of"
}, {
"boundingBox": "472,807,543,807,543,829,472,829",
"word": "non-Chinese"
}, {
"boundingBox": "552,807,587,806,587,828,552,829",
"word": "firms."
}, {
"boundingBox": "593,806,636,806,636,828,593,828",
"word": "Projects"
}],
"text": "companies' position in the global marketplace at the expense of non-Chinese firms. Projects",
"lang": "en"
}, {
"boundingBox": "82,825,636,825,636,847,82,847",
"text_height": 22,
"words": [{
"boundingBox": "82,825,112,825,112,847,82,847",
"word": "that"
}, {
"boundingBox": "120,825,158,825,158,847,120,847",
"word": "Beijing"
}, {
"boundingBox": "167,825,183,825,183,847,167,847",
"word": "has"
}, {
"boundingBox": "189,825,230,825,230,847,189,847",
"word": "labeled"
}, {
"boundingBox": "241,825,271,825,271,847,241,847",
"word": "OBOR"
}, {
"boundingBox": "279,825,329,825,329,847,279,847",
"word": "include:"
}, {
"boundingBox": "337,825,430,825,430,847,337,847",
"word": "transportation,"
}, {
"boundingBox": "436,825,505,825,505,847,436,847",
"word": "information"
}, {
"boundingBox": "513,825,532,825,532,847,513,847",
"word": "and"
}, {
"boundingBox": "543,825,636,825,636,847,543,847",
"word": "communications"
}],
"text": "that Beijing has labeled OBOR include: transportation, information and communications",
"lang": "en"
}, {
"boundingBox": "82,841,636,841,636,866,82,866",
"text_height": 22,
"words": [{
"boundingBox": "82,844,153,843,153,865,82,866",
"word": "technology"
}, {
"boundingBox": "161,843,180,843,180,865,161,865",
"word": "and"
}, {
"boundingBox": "189,843,227,842,227,864,189,865",
"word": "energy"
}, {
"boundingBox": "235,842,323,842,323,864,235,864",
"word": "infrastructure;"
}, {
"boundingBox": "329,842,386,842,386,864,329,864",
"word": "industrial"
}, {
"boundingBox": "395,841,430,841,430,863,395,863",
"word": "parks;"
}, {
"boundingBox": "439,842,472,842,472,864,439,864",
"word": "media"
}, {
"boundingBox": "480,842,562,842,562,864,480,864",
"word": "collaboration;"
}, {
"boundingBox": "571,842,612,843,612,865,571,864",
"word": "science"
}, {
"boundingBox": "620,843,636,844,636,866,620,865",
"word": "and"
}],
"text": "technology and energy infrastructure; industrial parks; media collaboration; science and",
"lang": "en"
}]
}, {
"boundingBox": "79,1035,636,1035,636,1190,79,1190",
"dir": "h",
"lang": "en",
"lines": [{
"boundingBox": "82,1035,636,1035,636,1057,82,1057",
"text_height": 20,
"words": [{
"boundingBox": "82,1035,152,1036,152,1056,82,1055",
"word": "technology"
}, {
"boundingBox": "162,1036,224,1036,224,1056,162,1056",
"word": "exchanges;"
}, {
"boundingBox": "234,1036,287,1036,287,1056,234,1056",
"word": "programs"
}, {
"boundingBox": "297,1036,309,1036,309,1056,297,1056",
"word": "on"
}, {
"boundingBox": "317,1036,357,1036,357,1056,317,1056",
"word": "culture"
}, {
"boundingBox": "367,1036,384,1036,384,1056,367,1056",
"word": "and"
}, {
"boundingBox": "394,1036,442,1036,442,1056,394,1056",
"word": "religion;"
}, {
"boundingBox": "449,1036,469,1036,469,1056,449,1056",
"word": "and"
}, {
"boundingBox": "477,1036,502,1036,502,1056,477,1056",
"word": "even"
}, {
"boundingBox": "512,1036,557,1036,557,1056,512,1056",
"word": "military"
}, {
"boundingBox": "564,1036,584,1036,584,1056,564,1056",
"word": "and"
}, {
"boundingBox": "594,1036,636,1037,636,1057,594,1056",
"word": "security"
}],
"text": "technology exchanges; programs on culture and religion; and even military and security",
"lang": "en"
}, {
"boundingBox": "82,1050,636,1050,636,1073,82,1073",
"text_height": 22,
"words": [{
"boundingBox": "82,1051,164,1051,164,1073,82,1073",
"word": "cooperation."
}, {
"boundingBox": "172,1051,208,1051,208,1073,172,1073",
"word": "Beijing"
}, {
"boundingBox": "216,1051,222,1051,222,1073,216,1073",
"word": "is"
}, {
"boundingBox": "230,1051,249,1051,249,1073,230,1073",
"word": "also"
}, {
"boundingBox": "257,1051,299,1051,299,1073,257,1073",
"word": "seeking"
}, {
"boundingBox": "307,1051,312,1051,312,1073,307,1073",
"word": "to"
}, {
"boundingBox": "321,1051,370,1051,370,1073,321,1073",
"word": "arbitrate"
}, {
"boundingBox": "378,1051,458,1051,458,1073,378,1073",
"word": "OBOR-related"
}, {
"boundingBox": "466,1051,532,1051,532,1073,466,1073",
"word": "commercial"
}, {
"boundingBox": "538,1051,587,1051,587,1073,538,1073",
"word": "disputes"
}, {
"boundingBox": "593,1051,636,1050,636,1072,593,1073",
"word": "through"
}],
"text": "cooperation. Beijing is also seeking to arbitrate OBOR-related commercial disputes through",
"lang": "en"
}, {
"boundingBox": "79,1067,636,1067,636,1092,79,1092",
"text_height": 22,
"words": [{
"boundingBox": "79,1070,103,1070,103,1092,79,1092",
"word": "Its"
}, {
"boundingBox": "111,1070,136,1069,136,1091,111,1092",
"word": "own"
}, {
"boundingBox": "147,1069,213,1069,213,1091,147,1091",
"word": "specialized"
}, {
"boundingBox": "221,1069,262,1069,262,1091,221,1091",
"word": "courts,"
}, {
"boundingBox": "270,1069,306,1069,306,1091,270,1091",
"word": "which"
}, {
"boundingBox": "314,1069,358,1069,358,1091,314,1091",
"word": "answer"
}, {
"boundingBox": "366,1069,379,1069,379,1091,366,1091",
"word": "to"
}, {
"boundingBox": "388,1069,407,1069,407,1091,388,1091",
"word": "the"
}, {
"boundingBox": "418,1069,448,1069,448,1091,418,1091",
"word": "CCP."
}, {
"boundingBox": "459,1069,478,1069,478,1091,459,1091",
"word": "The"
}, {
"boundingBox": "489,1069,527,1069,527,1091,489,1091",
"word": "United"
}, {
"boundingBox": "538,1069,574,1068,574,1090,538,1091",
"word": "States"
}, {
"boundingBox": "582,1068,636,1067,636,1089,582,1090",
"word": "welcomes"
}],
"text": "Its own specialized courts, which answer to the CCP. The United States welcomes",
"lang": "en"
}, {
"boundingBox": "82,1085,636,1085,636,1110,82,1110",
"text_height": 22,
"words": [{
"boundingBox": "82,1088,169,1088,169,1110,82,1110",
"word": "contributions"
}, {
"boundingBox": "180,1088,194,1088,194,1110,180,1110",
"word": "by"
}, {
"boundingBox": "208,1088,238,1088,238,1110,208,1110",
"word": "China"
}, {
"boundingBox": "249,1088,263,1088,263,1110,249,1110",
"word": "to"
}, {
"boundingBox": "271,1088,343,1088,343,1110,271,1110",
"word": "sustainable,"
}, {
"boundingBox": "354,1088,425,1088,425,1110,354,1110",
"word": "high-quality"
}, {
"boundingBox": "436,1088,513,1087,513,1109,436,1110",
"word": "development"
}, {
"boundingBox": "524,1087,549,1087,549,1109,524,1109",
"word": "that"
}, {
"boundingBox": "557,1087,604,1086,604,1108,557,1109",
"word": "accords"
}, {
"boundingBox": "615,1086,636,1085,636,1107,615,1108",
"word": "with"
}],
"text": "contributions by China to sustainable, high-quality development that accords with",
"lang": "en"
}, {
"boundingBox": "82,1105,636,1105,636,1129,82,1129",
"text_height": 22,
"words": [{
"boundingBox": "82,1107,167,1107,167,1129,82,1129",
"word": "international"
}, {
"boundingBox": "175,1107,197,1107,197,1129,175,1129",
"word": "best"
}, {
"boundingBox": "205,1107,260,1106,260,1128,205,1129",
"word": "practices,"
}, {
"boundingBox": "268,1106,285,1106,285,1128,268,1128",
"word": "but"
}, {
"boundingBox": "293,1106,326,1106,326,1128,293,1128",
"word": "OBOR"
}, {
"boundingBox": "334,1106,381,1106,381,1128,334,1128",
"word": "projects"
}, {
"boundingBox": "389,1106,450,1106,450,1128,389,1128",
"word": "frequently"
}, {
"boundingBox": "458,1106,502,1106,502,1128,458,1128",
"word": "operate"
}, {
"boundingBox": "513,1106,535,1106,535,1128,513,1128",
"word": "well"
}, {
"boundingBox": "543,1106,584,1105,584,1127,543,1128",
"word": "outside"
}, {
"boundingBox": "593,1105,601,1105,601,1127,593,1127",
"word": "of"
}, {
"boundingBox": "609,1105,636,1105,636,1127,609,1127",
"word": "these"
}],
"text": "international best practices, but OBOR projects frequently operate well outside of these",
"lang": "en"
}, {
"boundingBox": "82,1120,636,1120,636,1150,82,1150",
"text_height": 22,
"words": [{
"boundingBox": "82,1127,145,1128,145,1150,82,1149",
"word": "standards"
}, {
"boundingBox": "153,1128,169,1128,169,1150,153,1150",
"word": "and"
}, {
"boundingBox": "178,1128,194,1128,194,1150,178,1150",
"word": "are"
}, {
"boundingBox": "202,1128,279,1128,279,1150,202,1150",
"word": "characterized"
}, {
"boundingBox": "290,1128,299,1128,299,1150,290,1150",
"word": "by"
}, {
"boundingBox": "310,1128,332,1128,332,1150,310,1150",
"word": "poor"
}, {
"boundingBox": "340,1128,384,1127,384,1149,340,1150",
"word": "quality."
}, {
"boundingBox": "389,1127,455,1126,455,1148,389,1149",
"word": "corruption,"
}, {
"boundingBox": "461,1126,549,1123,549,1145,461,1148",
"word": "environmental"
}, {
"boundingBox": "554,1123,631,1120,631,1142,554,1145",
"word": "degradation,"
}, {
"boundingBox": "636,1120,636,1142,636,1142,636,1120",
"word": "a"
}],
"text": "standards and are characterized by poor quality. corruption, environmental degradation, a",
"lang": "en"
}, {
"boundingBox": "79,1135,636,1135,636,1171,79,1171",
"text_height": 22,
"words": [{
"boundingBox": "79,1147,98,1148,98,1170,79,1169",
"word": "or"
}, {
"boundingBox": "106,1148,180,1149,180,1171,106,1170",
"word": "exacerbating"
}, {
"boundingBox": "188,1149,254,1149,254,1171,188,1171",
"word": "governance"
}, {
"boundingBox": "259,1149,278,1149,278,1171,259,1171",
"word": "and"
}, {
"boundingBox": "284,1148,314,1148,314,1170,284,1170",
"word": "fiscal"
}, {
"boundingBox": "322,1148,374,1147,374,1169,322,1170",
"word": "problems"
}, {
"boundingBox": "379,1147,388,1147,388,1169,379,1169",
"word": "in"
}, {
"boundingBox": "396,1146,445,1145,445,1167,396,1168",
"word": "boeaque"
}, {
"boundingBox": "451,1145,486,1143,486,1165,451,1167",
"word": "loans,"
}, {
"boundingBox": "492,1143,508,1142,508,1164,492,1165",
"word": "and"
}, {
"boundingBox": "519,1142,568,1139,568,1161,519,1164",
"word": "contracts"
}, {
"boundingBox": "576,1139,636,1135,636,1157,576,1161",
"word": "generating"
}],
"text": "or exacerbating governance and fiscal problems in boeaque loans, and contracts generating",
"lang": "en"
}, {
"boundingBox": "277,1155,282,1155,282,1190,277,1190",
"text_height": 35,
"words": [{
"boundingBox": "277,1155,282,1155,282,1190,277,1190",
"word": "1"
}],
"text": "1",
"lang": "en"
}]
}, {
"boundingBox": "79,1185,639,1185,639,1588,79,1588",
"dir": "h",
"lang": "en",
"lines": [{
"boundingBox": "82,1185,636,1185,636,1210,82,1210",
"text_height": 22,
"words": [{
"boundingBox": "82,1185,120,1185,120,1207,82,1207",
"word": "Given"
}, {
"boundingBox": "128,1185,175,1186,175,1208,128,1207",
"word": "Beljing's"
}, {
"boundingBox": "180,1186,241,1186,241,1208,180,1208",
"word": "increasing"
}, {
"boundingBox": "249,1186,266,1186,266,1208,249,1208",
"word": "use"
}, {
"boundingBox": "274,1186,282,1185,282,1207,274,1208",
"word": "of"
}, {
"boundingBox": "288,1185,343,1185,343,1207,288,1207",
"word": "economic"
}, {
"boundingBox": "348,1185,397,1185,397,1207,348,1207",
"word": "leverage"
}, {
"boundingBox": "406,1185,414,1185,414,1207,406,1207",
"word": "to"
}, {
"boundingBox": "419,1185,461,1185,461,1207,419,1207",
"word": "extract"
}, {
"boundingBox": "469,1185,513,1185,513,1207,469,1207",
"word": "political"
}, {
"boundingBox": "521,1185,587,1186,587,1208,521,1207",
"word": "concessions"
}, {
"boundingBox": "595,1187,620,1187,620,1209,595,1209",
"word": "from"
}, {
"boundingBox": "628,1187,636,1188,636,1210,628,1209",
"word": "or"
}],
"text": "Given Beljing's increasing use of economic leverage to extract political concessions from or",
"lang": "en"
}, {
"boundingBox": "82,1205,636,1205,636,1229,82,1229",
"text_height": 22,
"words": [{
"boundingBox": "82,1205,117,1205,117,1227,82,1227",
"word": "exact"
}, {
"boundingBox": "123,1205,186,1206,186,1228,123,1227",
"word": "retribution"
}, {
"boundingBox": "194,1206,235,1206,235,1228,194,1228",
"word": "against"
}, {
"boundingBox": "244,1206,271,1206,271,1228,244,1228",
"word": "other"
}, {
"boundingBox": "279,1205,337,1205,337,1227,279,1227",
"word": "countries,"
}, {
"boundingBox": "343,1205,356,1205,356,1227,343,1227",
"word": "the"
}, {
"boundingBox": "367,1205,403,1205,403,1227,367,1227",
"word": "United"
}, {
"boundingBox": "411,1205,441,1205,441,1227,411,1227",
"word": "States"
}, {
"boundingBox": "450,1205,485,1205,485,1227,450,1227",
"word": "judges"
}, {
"boundingBox": "494,1205,516,1205,516,1227,494,1227",
"word": "that"
}, {
"boundingBox": "524,1205,560,1205,560,1227,524,1227",
"word": "Beijing"
}, {
"boundingBox": "568,1205,590,1206,590,1228,568,1227",
"word": "will"
}, {
"boundingBox": "595,1206,636,1207,636,1229,595,1228",
"word": "attempt"
}],
"text": "exact retribution against other countries, the United States judges that Beijing will attempt",
"lang": "en"
}, {
"boundingBox": "82,1225,639,1225,639,1249,82,1249",
"text_height": 22,
"words": [{
"boundingBox": "82,1227,98,1226,98,1248,82,1249",
"word": "to"
}, {
"boundingBox": "106,1226,147,1226,147,1248,106,1248",
"word": "convert"
}, {
"boundingBox": "155,1226,185,1226,185,1248,155,1248",
"word": "OBOR"
}, {
"boundingBox": "196,1226,240,1225,240,1247,196,1248",
"word": "projects"
}, {
"boundingBox": "246,1225,268,1225,268,1247,246,1247",
"word": "into"
}, {
"boundingBox": "276,1225,311,1225,311,1247,276,1247",
"word": "undue"
}, {
"boundingBox": "319,1225,363,1225,363,1247,319,1247",
"word": "political"
}, {
"boundingBox": "369,1225,423,1225,423,1247,369,1247",
"word": "influence"
}, {
"boundingBox": "432,1226,448,1226,448,1248,432,1248",
"word": "and"
}, {
"boundingBox": "459,1226,500,1226,500,1248,459,1248",
"word": "military"
}, {
"boundingBox": "508,1226,549,1226,549,1248,508,1248",
"word": "access."
}, {
"boundingBox": "560,1226,596,1227,596,1249,560,1248",
"word": "Beijing"
}, {
"boundingBox": "604,1227,629,1227,629,1249,604,1249",
"word": "uses"
}, {
"boundingBox": "634,1227,639,1227,639,1249,634,1249",
"word": "a"
}],
"text": "to convert OBOR projects into undue political influence and military access. Beijing uses a",
"lang": "en"
}, {
"boundingBox": "82,1245,636,1245,636,1270,82,1270",
"text_height": 22,
"words": [{
"boundingBox": "82,1248,123,1247,123,1269,82,1270",
"word": "tanks"
}, {
"boundingBox": "131,1247,150,1246,150,1268,131,1269",
"word": "and"
}, {
"boundingBox": "167,1246,246,1246,246,1268,167,1268",
"word": "thenreatanen"
}, {
"boundingBox": "285,1246,337,1246,337,1268,285,1268",
"word": "erneto"
}, {
"boundingBox": "348,1246,392,1246,392,1268,348,1268",
"word": "manner"
}, {
"boundingBox": "406,1246,408,1247,408,1269,406,1268",
"word": "o"
}, {
"boundingBox": "414,1247,422,1247,422,1269,414,1269",
"word": "to"
}, {
"boundingBox": "430,1247,447,1247,447,1269,430,1269",
"word": "toe"
}, {
"boundingBox": "458,1247,474,1247,474,1269,458,1269",
"word": "the"
}, {
"boundingBox": "483,1247,505,1247,505,1269,483,1269",
"word": "CcP"
}, {
"boundingBox": "510,1247,535,1246,535,1268,510,1269",
"word": "line"
}, {
"boundingBox": "549,1246,604,1245,604,1267,549,1268",
"word": "ndcons"
}, {
"boundingBox": "609,1245,636,1245,636,1267,609,1267",
"word": "think"
}],
"text": "tanks and thenreatanen erneto manner o to toe the CcP line ndcons think",
"lang": "en"
}, {
"boundingBox": "82,1266,636,1266,636,1289,82,1289",
"text_height": 22,
"words": [{
"boundingBox": "82,1266,158,1266,158,1288,82,1288",
"word": "expression."
}, {
"boundingBox": "169,1266,205,1266,205,1288,169,1288",
"word": "Beijing"
}, {
"boundingBox": "213,1266,230,1266,230,1288,213,1288",
"word": "has"
}, {
"boundingBox": "238,1267,293,1267,293,1289,238,1289",
"word": "restricted"
}, {
"boundingBox": "301,1267,329,1267,329,1289,301,1289",
"word": "trade"
}, {
"boundingBox": "340,1267,356,1267,356,1289,340,1289",
"word": "and"
}, {
"boundingBox": "364,1267,408,1267,408,1289,364,1289",
"word": "tourism"
}, {
"boundingBox": "419,1267,441,1267,441,1289,419,1289",
"word": "with"
}, {
"boundingBox": "450,1267,507,1267,507,1289,450,1289",
"word": "Australia,"
}, {
"boundingBox": "513,1267,560,1267,560,1289,513,1289",
"word": "Canada,"
}, {
"boundingBox": "565,1267,595,1267,595,1289,565,1289",
"word": "South"
}, {
"boundingBox": "604,1267,636,1267,636,1289,604,1289",
"word": "Korea,"
}],
"text": "expression. Beijing has restricted trade and tourism with Australia, Canada, South Korea,",
"lang": "en"
}, {
"boundingBox": "82,1284,636,1284,636,1308,82,1308",
"text_height": 22,
"words": [{
"boundingBox": "82,1284,123,1285,123,1307,82,1306",
"word": "lapan,"
}, {
"boundingBox": "131,1285,178,1285,178,1307,131,1307",
"word": "Norway,"
}, {
"boundingBox": "183,1285,197,1286,197,1308,183,1307",
"word": "the"
}, {
"boundingBox": "208,1286,277,1286,277,1308,208,1308",
"word": "Philippines,"
}, {
"boundingBox": "282,1286,301,1286,301,1308,282,1308",
"word": "and"
}, {
"boundingBox": "310,1286,348,1286,348,1308,310,1308",
"word": "others,"
}, {
"boundingBox": "354,1286,370,1286,370,1308,354,1308",
"word": "and"
}, {
"boundingBox": "381,1286,397,1286,397,1308,381,1308",
"word": "has"
}, {
"boundingBox": "406,1286,452,1286,452,1308,406,1308",
"word": "detained"
}, {
"boundingBox": "463,1286,513,1286,513,1308,463,1308",
"word": "Canadian"
}, {
"boundingBox": "521,1286,568,1286,568,1308,521,1308",
"word": "citizens,"
}, {
"boundingBox": "573,1286,582,1286,582,1308,573,1308",
"word": "in"
}, {
"boundingBox": "590,1286,601,1286,601,1308,590,1308",
"word": "an"
}, {
"boundingBox": "609,1286,636,1285,636,1307,609,1308",
"word": "effort"
}],
"text": "lapan, Norway, the Philippines, and others, and has detained Canadian citizens, in an effort",
"lang": "en"
}, {
"boundingBox": "82,1303,636,1303,636,1327,82,1327",
"text_height": 22,
"words": [{
"boundingBox": "82,1305,98,1305,98,1327,82,1327",
"word": "to"
}, {
"boundingBox": "103,1305,153,1304,153,1326,103,1327",
"word": "interfere"
}, {
"boundingBox": "161,1304,167,1304,167,1326,161,1326",
"word": "in"
}, {
"boundingBox": "175,1304,205,1304,205,1326,175,1326",
"word": "these"
}, {
"boundingBox": "213,1304,268,1304,268,1326,213,1326",
"word": "countries'"
}, {
"boundingBox": "274,1304,321,1303,321,1325,274,1326",
"word": "internal"
}, {
"boundingBox": "326,1303,373,1303,373,1325,326,1325",
"word": "political"
}, {
"boundingBox": "378,1303,395,1303,395,1325,378,1325",
"word": "and"
}, {
"boundingBox": "400,1303,444,1303,444,1325,400,1325",
"word": "judicial"
}, {
"boundingBox": "452,1303,513,1303,513,1325,452,1325",
"word": "processes."
}, {
"boundingBox": "518,1303,546,1303,546,1325,518,1325",
"word": "After"
}, {
"boundingBox": "551,1303,568,1303,568,1325,551,1325",
"word": "the"
}, {
"boundingBox": "576,1303,604,1303,604,1325,576,1325",
"word": "Dalal"
}, {
"boundingBox": "609,1303,636,1303,636,1325,609,1325",
"word": "Lama"
}],
"text": "to interfere in these countries' internal political and judicial processes. After the Dalal Lama",
"lang": "en"
}, {
"boundingBox": "82,1320,636,1320,636,1346,82,1346",
"text_height": 22,
"words": [{
"boundingBox": "82,1324,128,1323,128,1345,82,1346",
"word": "visited"
}, {
"boundingBox": "139,1322,194,1321,194,1343,139,1344",
"word": "Mongolia"
}, {
"boundingBox": "202,1321,213,1321,213,1343,202,1343",
"word": "in"
}, {
"boundingBox": "224,1321,255,1321,255,1343,224,1343",
"word": "2016,"
}, {
"boundingBox": "266,1320,285,1320,285,1342,266,1342",
"word": "the"
}, {
"boundingBox": "293,1320,315,1320,315,1342,293,1342",
"word": "PRC"
}, {
"boundingBox": "326,1320,397,1320,397,1342,326,1342",
"word": "government"
}, {
"boundingBox": "406,1320,461,1320,461,1342,406,1342",
"word": "imposed"
}, {
"boundingBox": "469,1320,494,1320,494,1342,469,1342",
"word": "new"
}, {
"boundingBox": "502,1320,538,1320,538,1342,502,1342",
"word": "tariffs"
}, {
"boundingBox": "546,1320,560,1321,560,1343,546,1342",
"word": "on"
}, {
"boundingBox": "568,1321,636,1321,636,1343,568,1343",
"word": "land-locked"
}],
"text": "visited Mongolia in 2016, the PRC government imposed new tariffs on land-locked",
"lang": "en"
}, {
"boundingBox": "82,1335,636,1335,636,1366,82,1366",
"text_height": 22,
"words": [{
"boundingBox": "82,1344,153,1340,153,1362,82,1366",
"word": "Mongolia's"
}, {
"boundingBox": "161,1340,208,1338,208,1360,161,1362",
"word": "mineral"
}, {
"boundingBox": "216,1338,260,1337,260,1359,216,1360",
"word": "exports"
}, {
"boundingBox": "271,1337,315,1336,315,1358,271,1359",
"word": "passing"
}, {
"boundingBox": "323,1336,370,1337,370,1359,323,1358",
"word": "through"
}, {
"boundingBox": "381,1337,417,1337,417,1359,381,1359",
"word": "China,"
}, {
"boundingBox": "425,1337,496,1337,496,1359,425,1359",
"word": "temporarily"
}, {
"boundingBox": "505,1337,568,1337,568,1359,505,1359",
"word": "paralyzing"
}, {
"boundingBox": "576,1337,636,1335,636,1357,576,1359",
"word": "Mongolia's"
}],
"text": "Mongolia's mineral exports passing through China, temporarily paralyzing Mongolia's",
"lang": "en"
}, {
"boundingBox": "89,1357,139,1357,139,1379,89,1379",
"text_height": 22,
"words": [{
"boundingBox": "89,1357,139,1357,139,1379,89,1379",
"word": "conomy"
}],
"text": "conomy",
"lang": "en"
}, {
"boundingBox": "89,1385,636,1385,636,1408,89,1408",
"text_height": 22,
"words": [{
"boundingBox": "89,1385,127,1385,127,1407,89,1407",
"word": "Beijing"
}, {
"boundingBox": "135,1385,165,1385,165,1407,135,1407",
"word": "seeks"
}, {
"boundingBox": "173,1385,206,1385,206,1407,173,1407",
"word": "global"
}, {
"boundingBox": "212,1385,278,1386,278,1408,212,1407",
"word": "recognition"
}, {
"boundingBox": "286,1386,299,1386,299,1408,286,1408",
"word": "for"
}, {
"boundingBox": "305,1386,319,1386,319,1408,305,1408",
"word": "its"
}, {
"boundingBox": "324,1386,412,1386,412,1408,324,1408",
"word": "environmental"
}, {
"boundingBox": "417,1386,456,1386,456,1408,417,1408",
"word": "efforts"
}, {
"boundingBox": "461,1386,480,1386,480,1408,461,1408",
"word": "and"
}, {
"boundingBox": "489,1386,524,1386,524,1408,489,1408",
"word": "claims"
}, {
"boundingBox": "530,1386,538,1386,538,1408,530,1408",
"word": "to"
}, {
"boundingBox": "546,1386,593,1386,593,1408,546,1408",
"word": "promote"
}, {
"boundingBox": "601,1386,636,1386,636,1408,601,1408",
"word": "\"green"
}],
"text": "Beijing seeks global recognition for its environmental efforts and claims to promote \"green",
"lang": "en"
}, {
"boundingBox": "82,1402,636,1402,636,1427,82,1427",
"text_height": 22,
"words": [{
"boundingBox": "82,1402,178,1403,178,1425,82,1424",
"word": "development.\""
}, {
"boundingBox": "189,1403,222,1403,222,1425,189,1425",
"word": "China."
}, {
"boundingBox": "230,1403,282,1403,282,1425,230,1425",
"word": "however,"
}, {
"boundingBox": "288,1403,304,1403,304,1425,288,1425",
"word": "has"
}, {
"boundingBox": "315,1403,340,1403,340,1425,315,1425",
"word": "been"
}, {
"boundingBox": "348,1403,362,1403,362,1425,348,1425",
"word": "the"
}, {
"boundingBox": "373,1403,414,1403,414,1425,373,1425",
"word": "world's"
}, {
"boundingBox": "419,1403,458,1404,458,1426,419,1425",
"word": "largest"
}, {
"boundingBox": "466,1404,535,1404,535,1426,466,1426",
"word": "greenhouse"
}, {
"boundingBox": "543,1404,557,1404,557,1426,543,1426",
"word": "gas"
}, {
"boundingBox": "565,1404,606,1405,606,1427,565,1426",
"word": "emitter"
}, {
"boundingBox": "617,1405,628,1405,628,1427,617,1427",
"word": "by"
}, {
"boundingBox": "636,1405,636,1427,636,1427,636,1405",
"word": "a"
}],
"text": "development.\" China. however, has been the world's largest greenhouse gas emitter by a",
"lang": "en"
}, {
"boundingBox": "79,1423,636,1423,636,1446,79,1446",
"text_height": 22,
"words": [{
"boundingBox": "79,1423,117,1423,117,1445,79,1445",
"word": "wide"
}, {
"boundingBox": "125,1423,163,1423,163,1445,125,1445",
"word": "margin"
}, {
"boundingBox": "172,1423,185,1423,185,1445,172,1445",
"word": "for"
}, {
"boundingBox": "196,1423,223,1423,223,1445,196,1445",
"word": "more"
}, {
"boundingBox": "232,1423,256,1423,256,1445,232,1445",
"word": "than"
}, {
"boundingBox": "265,1423,267,1423,267,1445,265,1445",
"word": "a"
}, {
"boundingBox": "278,1423,325,1424,325,1446,278,1445",
"word": "decade."
}, {
"boundingBox": "336,1424,371,1424,371,1446,336,1446",
"word": "Beijing"
}, {
"boundingBox": "379,1424,399,1424,399,1446,379,1446",
"word": "has"
}, {
"boundingBox": "407,1424,423,1424,423,1446,407,1446",
"word": "put"
}, {
"boundingBox": "431,1424,478,1424,478,1446,431,1446",
"word": "forward"
}, {
"boundingBox": "486,1424,519,1424,519,1446,486,1446",
"word": "vague"
}, {
"boundingBox": "527,1424,546,1424,546,1446,527,1446",
"word": "and"
}, {
"boundingBox": "554,1424,636,1423,636,1445,554,1446",
"word": "unenforceable"
}],
"text": "wide margin for more than a decade. Beijing has put forward vague and unenforceable",
"lang": "en"
}, {
"boundingBox": "82,1442,636,1442,636,1466,82,1466",
"text_height": 22,
"words": [{
"boundingBox": "82,1442,145,1443,145,1465,82,1464",
"word": "emissions"
}, {
"boundingBox": "153,1443,211,1443,211,1465,153,1465",
"word": "reduction"
}, {
"boundingBox": "222,1443,304,1444,304,1466,222,1465",
"word": "commitments"
}, {
"boundingBox": "312,1444,334,1444,334,1466,312,1466",
"word": "that"
}, {
"boundingBox": "343,1444,373,1444,373,1466,343,1466",
"word": "allow"
}, {
"boundingBox": "384,1444,425,1444,425,1466,384,1466",
"word": "China's"
}, {
"boundingBox": "433,1444,491,1444,491,1466,433,1466",
"word": "emissions"
}, {
"boundingBox": "502,1444,513,1444,513,1466,502,1466",
"word": "to"
}, {
"boundingBox": "521,1444,546,1444,546,1466,521,1466",
"word": "keep"
}, {
"boundingBox": "557,1444,604,1443,604,1465,557,1466",
"word": "growing"
}, {
"boundingBox": "612,1443,636,1443,636,1465,612,1465",
"word": "until"
}],
"text": "emissions reduction commitments that allow China's emissions to keep growing until",
"lang": "en"
}, {
"boundingBox": "82,1463,639,1463,639,1486,82,1486",
"text_height": 22,
"words": [{
"boundingBox": "82,1464,112,1464,112,1486,82,1486",
"word": "rest"
}, {
"boundingBox": "117,1464,125,1464,125,1486,117,1486",
"word": "of"
}, {
"boundingBox": "131,1464,147,1464,147,1486,131,1486",
"word": "the"
}, {
"boundingBox": "158,1464,185,1464,185,1486,158,1486",
"word": "world"
}, {
"boundingBox": "196,1464,257,1464,257,1486,196,1486",
"word": "combined."
}, {
"boundingBox": "268,1464,309,1464,309,1486,268,1486",
"word": "Chinese"
}, {
"boundingBox": "317,1464,344,1464,344,1486,317,1486",
"word": "fems"
}, {
"boundingBox": "352,1464,371,1464,371,1486,352,1486",
"word": "also"
}, {
"boundingBox": "380,1464,418,1464,418,1486,380,1486",
"word": "export"
}, {
"boundingBox": "426,1464,475,1464,475,1486,426,1486",
"word": "pollutine"
}, {
"boundingBox": "484,1464,536,1464,536,1486,484,1486",
"word": "coal-fired"
}, {
"boundingBox": "547,1464,579,1464,579,1486,547,1486",
"word": "power"
}, {
"boundingBox": "588,1464,623,1464,623,1486,588,1486",
"word": "plants"
}, {
"boundingBox": "629,1464,639,1463,639,1485,629,1486",
"word": "to"
}],
"text": "rest of the world combined. Chinese fems also export pollutine coal-fired power plants to",
"lang": "en"
}, {
"boundingBox": "82,1483,639,1483,639,1506,82,1506",
"text_height": 22,
"words": [{
"boundingBox": "82,1484,153,1484,153,1506,82,1506",
"word": "developing"
}, {
"boundingBox": "161,1484,213,1484,213,1506,161,1506",
"word": "countries"
}, {
"boundingBox": "221,1484,229,1484,229,1506,221,1506",
"word": "by"
}, {
"boundingBox": "237,1484,251,1484,251,1506,237,1506",
"word": "the"
}, {
"boundingBox": "259,1484,319,1484,319,1506,259,1506",
"word": "hundreds."
}, {
"boundingBox": "330,1484,347,1484,347,1506,330,1506",
"word": "The"
}, {
"boundingBox": "355,1483,374,1483,374,1505,355,1505",
"word": "PRC"
}, {
"boundingBox": "380,1483,388,1483,388,1505,380,1505",
"word": "is"
}, {
"boundingBox": "396,1483,415,1483,415,1505,396,1505",
"word": "also"
}, {
"boundingBox": "423,1483,437,1483,437,1505,423,1505",
"word": "the"
}, {
"boundingBox": "448,1483,489,1483,489,1505,448,1505",
"word": "world's"
}, {
"boundingBox": "495,1483,533,1483,533,1505,495,1505",
"word": "largest"
}, {
"boundingBox": "538,1483,577,1483,577,1505,538,1505",
"word": "source"
}, {
"boundingBox": "582,1483,593,1483,593,1505,582,1505",
"word": "of"
}, {
"boundingBox": "598,1483,639,1483,639,1505,598,1505",
"word": "marine."
}],
"text": "developing countries by the hundreds. The PRC is also the world's largest source of marine.",
"lang": "en"
}, {
"boundingBox": "82,1502,639,1502,639,1526,82,1526",
"text_height": 22,
"words": [{
"boundingBox": "82,1502,125,1503,125,1525,82,1524",
"word": "plastic"
}, {
"boundingBox": "133,1503,188,1504,188,1526,133,1525",
"word": "pollution,"
}, {
"boundingBox": "194,1504,259,1504,259,1526,194,1526",
"word": "discharging"
}, {
"boundingBox": "268,1504,289,1504,289,1526,268,1526",
"word": "over"
}, {
"boundingBox": "298,1504,311,1503,311,1525,298,1526",
"word": "3.5"
}, {
"boundingBox": "319,1503,358,1503,358,1525,319,1525",
"word": "million"
}, {
"boundingBox": "366,1503,402,1503,402,1525,366,1525",
"word": "metric"
}, {
"boundingBox": "407,1503,429,1502,429,1524,407,1525",
"word": "tons"
}, {
"boundingBox": "434,1502,456,1502,456,1524,434,1524",
"word": "into"
}, {
"boundingBox": "464,1502,478,1502,478,1524,464,1524",
"word": "the"
}, {
"boundingBox": "486,1502,516,1502,516,1524,486,1524",
"word": "ocean"
}, {
"boundingBox": "525,1502,547,1502,547,1524,525,1524",
"word": "each"
}, {
"boundingBox": "555,1502,585,1502,585,1524,555,1524",
"word": "year."
}, {
"boundingBox": "593,1502,609,1502,609,1524,593,1524",
"word": "The"
}, {
"boundingBox": "618,1502,639,1502,639,1524,618,1524",
"word": "PRC"
}],
"text": "plastic pollution, discharging over 3.5 million metric tons into the ocean each year. The PRC",
"lang": "en"
}, {
"boundingBox": "82,1519,636,1519,636,1546,82,1546",
"text_height": 22,
"words": [{
"boundingBox": "82,1522,120,1523,120,1545,82,1544",
"word": "ranks"
}, {
"boundingBox": "125,1523,150,1523,150,1545,125,1545",
"word": "first"
}, {
"boundingBox": "156,1523,164,1523,164,1545,156,1545",
"word": "in"
}, {
"boundingBox": "172,1523,189,1523,189,1545,172,1545",
"word": "the"
}, {
"boundingBox": "197,1523,230,1524,230,1546,197,1545",
"word": "world"
}, {
"boundingBox": "235,1524,252,1524,252,1546,235,1546",
"word": "for"
}, {
"boundingBox": "257,1524,299,1524,299,1546,257,1546",
"word": "illegal,"
}, {
"boundingBox": "304,1524,373,1523,373,1545,304,1546",
"word": "unreported,"
}, {
"boundingBox": "381,1523,397,1523,397,1545,381,1545",
"word": "and"
}, {
"boundingBox": "406,1523,477,1522,477,1544,406,1545",
"word": "unregulated"
}, {
"boundingBox": "483,1522,524,1521,524,1543,483,1544",
"word": "fishing"
}, {
"boundingBox": "529,1521,538,1521,538,1543,529,1543",
"word": "in"
}, {
"boundingBox": "549,1521,587,1520,587,1542,549,1543",
"word": "coastal"
}, {
"boundingBox": "593,1520,636,1519,636,1541,593,1542",
"word": "nations"
}],
"text": "ranks first in the world for illegal, unreported, and unregulated fishing in coastal nations",
"lang": "en"
}, {
"boundingBox": "82,1539,636,1539,636,1567,82,1567",
"text_height": 22,
"words": [{
"boundingBox": "82,1541,125,1543,125,1565,82,1563",
"word": "waters"
}, {
"boundingBox": "131,1543,172,1544,172,1566,131,1565",
"word": "around"
}, {
"boundingBox": "178,1544,194,1544,194,1566,178,1566",
"word": "the"
}, {
"boundingBox": "202,1544,238,1545,238,1567,202,1566",
"word": "world,"
}, {
"boundingBox": "241,1545,310,1544,310,1566,241,1567",
"word": "threatening"
}, {
"boundingBox": "315,1544,343,1543,343,1565,315,1566",
"word": "local"
}, {
"boundingBox": "348,1543,408,1542,408,1564,348,1565",
"word": "economies"
}, {
"boundingBox": "414,1542,430,1541,430,1563,414,1564",
"word": "and"
}, {
"boundingBox": "439,1541,485,1540,485,1562,439,1563",
"word": "harming"
}, {
"boundingBox": "491,1540,507,1540,507,1562,491,1562",
"word": "the"
}, {
"boundingBox": "516,1540,554,1539,554,1561,516,1562",
"word": "marine"
}, {
"boundingBox": "560,1539,636,1539,636,1561,560,1561",
"word": "environment."
}],
"text": "waters around the world, threatening local economies and harming the marine environment.",
"lang": "en"
}, {
"boundingBox": "82,1552,636,1552,636,1588,82,1588",
"text_height": 22,
"words": [{
"boundingBox": "82,1562,114,1564,114,1586,82,1584",
"word": "their"
}, {
"boundingBox": "120,1564,178,1566,178,1588,120,1586",
"word": "thetorical"
}, {
"boundingBox": "183,1566,235,1566,235,1588,183,1588",
"word": "promises"
}, {
"boundingBox": "244,1566,252,1566,252,1588,244,1588",
"word": "of"
}, {
"boundingBox": "257,1565,345,1563,345,1585,257,1587",
"word": "environmental"
}, {
"boundingBox": "351,1563,373,1562,373,1584,351,1585",
"word": "ste"
}, {
"boundingBox": "381,1562,425,1560,425,1582,381,1584",
"word": "elobally"
}, {
"boundingBox": "433,1559,480,1557,480,1579,433,1581",
"word": "harmful"
}, {
"boundingBox": "488,1557,538,1555,538,1577,488,1579",
"word": "practices"
}, {
"boundingBox": "546,1555,571,1554,571,1576,546,1577",
"word": "does"
}, {
"boundingBox": "579,1554,595,1553,595,1575,579,1576",
"word": "not"
}, {
"boundingBox": "606,1553,636,1552,636,1574,606,1575",
"word": "match"
}],
"text": "their thetorical promises of environmental ste elobally harmful practices does not match",
"lang": "en"
}]
}, {
"boundingBox": "79,1598,253,1598,253,1624,79,1624",
"dir": "h",
"lang": "en",
"lines": [{
"boundingBox": "79,1598,253,1598,253,1624,79,1624",
"text_height": 25,
"words": [{
"boundingBox": "79,1598,97,1598,97,1623,79,1623",
"word": "2"
}, {
"boundingBox": "107,1598,169,1599,169,1624,107,1623",
"word": "Challenges"
}, {
"boundingBox": "175,1599,182,1599,182,1624,175,1624",
"word": "to"
}, {
"boundingBox": "191,1599,210,1599,210,1624,191,1624",
"word": "Our"
}, {
"boundingBox": "216,1599,253,1599,253,1624,216,1624",
"word": "Values"
}],
"text": "2 Challenges to Our Values",
"lang": "en"
}]
}, {
"boundingBox": "82,1628,636,1628,636,1775,82,1775",
"dir": "h",
"lang": "en",
"lines": [{
"boundingBox": "263,1628,367,1628,367,1650,263,1650",
"text_height": 22,
"words": [{
"boundingBox": "263,1628,367,1628,367,1650,263,1650",
"word": "aluenronosition"
}],
"text": "aluenronosition",
"lang": "en"
}, {
"boundingBox": "485,1628,604,1628,604,1650,485,1650",
"text_height": 22,
"words": [{
"boundingBox": "485,1628,539,1628,539,1650,485,1650",
"word": "hedrock"
}, {
"boundingBox": "547,1628,604,1628,604,1650,547,1650",
"word": "American"
}],
"text": "hedrock American",
"lang": "en"
}, {
"boundingBox": "82,1639,636,1639,636,1665,82,1665",
"text_height": 22,
"words": [{
"boundingBox": "82,1643,106,1642,106,1664,82,1665",
"word": "The"
}, {
"boundingBox": "117,1642,134,1642,134,1664,117,1664",
"word": "CCP"
}, {
"boundingBox": "142,1642,197,1641,197,1663,142,1664",
"word": "promotes"
}, {
"boundingBox": "205,1641,249,1641,249,1663,205,1663",
"word": "globally"
}, {
"boundingBox": "255,1640,257,1640,257,1662,255,1662",
"word": "a"
}, {
"boundingBox": "266,1640,293,1640,293,1662,266,1662",
"word": "value"
}, {
"boundingBox": "301,1640,367,1640,367,1662,301,1662",
"word": "proposition"
}, {
"boundingBox": "375,1640,397,1640,397,1662,375,1662",
"word": "that"
}, {
"boundingBox": "406,1640,463,1640,463,1662,406,1662",
"word": "challenges"
}, {
"boundingBox": "472,1640,485,1640,485,1662,472,1662",
"word": "the"
}, {
"boundingBox": "494,1640,538,1640,538,1662,494,1662",
"word": "bedrock"
}, {
"boundingBox": "549,1640,601,1639,601,1661,549,1662",
"word": "American"
}, {
"boundingBox": "609,1639,636,1639,636,1661,609,1661",
"word": "belief"
}],
"text": "The CCP promotes globally a value proposition that challenges the bedrock American belief",
"lang": "en"
}, {
"boundingBox": "82,1660,636,1660,636,1685,82,1685",
"text_height": 22,
"words": [{
"boundingBox": "82,1663,106,1663,106,1685,82,1685",
"word": "the"
}, {
"boundingBox": "114,1663,158,1662,158,1684,114,1685",
"word": "currente"
}, {
"boundingBox": "167,1662,197,1662,197,1684,167,1684",
"word": "oener"
}, {
"boundingBox": "200,1662,227,1661,227,1683,200,1684",
"word": "rtght"
}, {
"boundingBox": "233,1661,244,1661,244,1683,233,1683",
"word": "of"
}, {
"boundingBox": "249,1661,279,1661,279,1683,249,1683",
"word": "every"
}, {
"boundingBox": "288,1661,323,1661,323,1683,288,1683",
"word": "person"
}, {
"boundingBox": "332,1661,414,1661,414,1683,332,1683",
"word": "toliecberty,"
}, {
"boundingBox": "419,1661,439,1661,439,1683,419,1683",
"word": "and"
}, {
"boundingBox": "447,1661,461,1661,461,1683,447,1683",
"word": "the"
}, {
"boundingBox": "469,1661,513,1661,513,1683,469,1683",
"word": "pursuit"
}, {
"boundingBox": "518,1661,527,1661,527,1683,518,1683",
"word": "of"
}, {
"boundingBox": "532,1660,595,1660,595,1682,532,1682",
"word": "happiness."
}, {
"boundingBox": "604,1660,636,1660,636,1682,604,1682",
"word": "Under"
}],
"text": "the currente oener rtght of every person toliecberty, and the pursuit of happiness. Under",
"lang": "en"
}, {
"boundingBox": "82,1679,636,1679,636,1707,82,1707",
"text_height": 25,
"words": [{
"boundingBox": "82,1682,156,1681,156,1706,82,1707",
"word": "governance"
}, {
"boundingBox": "166,1681,203,1681,203,1706,166,1706",
"word": "system"
}, {
"boundingBox": "212,1681,225,1681,225,1706,212,1706",
"word": "as"
}, {
"boundingBox": "231,1681,300,1680,300,1705,231,1706",
"word": "functioning"
}, {
"boundingBox": "309,1680,340,1680,340,1705,309,1705",
"word": "better"
}, {
"boundingBox": "350,1680,375,1680,375,1705,350,1705",
"word": "than"
}, {
"boundingBox": "384,1680,415,1680,415,1705,384,1705",
"word": "those"
}, {
"boundingBox": "424,1680,434,1679,434,1704,424,1705",
"word": "of"
}, {
"boundingBox": "443,1679,468,1679,468,1704,443,1704",
"word": "what"
}, {
"boundingBox": "474,1679,484,1679,484,1704,474,1704",
"word": "it"
}, {
"boundingBox": "490,1679,524,1679,524,1704,490,1704",
"word": "refers"
}, {
"boundingBox": "534,1679,543,1679,543,1704,534,1704",
"word": "to"
}, {
"boundingBox": "552,1679,562,1679,562,1704,552,1704",
"word": "as"
}, {
"boundingBox": "568,1679,636,1680,636,1705,568,1704",
"word": "\"developed."
}],
"text": "governance system as functioning better than those of what it refers to as \"developed.",
"lang": "en"
}, {
"boundingBox": "87,1699,636,1699,636,1724,87,1724",
"text_height": 22,
"words": [{
"boundingBox": "87,1699,133,1701,133,1723,87,1721",
"word": "western"
}, {
"boundingBox": "142,1701,205,1702,205,1724,142,1723",
"word": "countries.\""
}, {
"boundingBox": "213,1702,249,1702,249,1724,213,1724",
"word": "Beijing"
}, {
"boundingBox": "257,1702,263,1702,263,1724,257,1724",
"word": "is"
}, {
"boundingBox": "271,1702,296,1702,296,1724,271,1724",
"word": "clear"
}, {
"boundingBox": "301,1702,323,1702,323,1724,301,1724",
"word": "that"
}, {
"boundingBox": "326,1702,334,1702,334,1724,326,1724",
"word": "it"
}, {
"boundingBox": "340,1702,362,1701,362,1723,340,1724",
"word": "sees"
}, {
"boundingBox": "367,1701,397,1701,397,1723,367,1723",
"word": "itself"
}, {
"boundingBox": "400,1701,408,1701,408,1723,400,1723",
"word": "as"
}, {
"boundingBox": "417,1701,461,1700,461,1722,417,1723",
"word": "engaged"
}, {
"boundingBox": "469,1700,474,1700,474,1722,469,1722",
"word": "in"
}, {
"boundingBox": "483,1700,494,1700,494,1722,483,1722",
"word": "an"
}, {
"boundingBox": "499,1700,562,1699,562,1721,499,1722",
"word": "ideological"
}, {
"boundingBox": "568,1699,636,1700,636,1722,568,1721",
"word": "competition"
}],
"text": "western countries.\" Beijing is clear that it sees itself as engaged in an ideological competition",
"lang": "en"
}, {
"boundingBox": "82,1716,636,1716,636,1742,82,1742",
"text_height": 22,
"words": [{
"boundingBox": "82,1716,112,1717,112,1739,82,1738",
"word": "with"
}, {
"boundingBox": "120,1717,136,1718,136,1740,120,1739",
"word": "the"
}, {
"boundingBox": "145,1718,175,1719,175,1741,145,1740",
"word": "West"
}, {
"boundingBox": "183,1719,191,1719,191,1741,183,1741",
"word": "In"
}, {
"boundingBox": "202,1719,233,1719,233,1741,202,1741",
"word": "2013,"
}, {
"boundingBox": "241,1720,282,1720,282,1742,241,1742",
"word": "General"
}, {
"boundingBox": "290,1720,343,1720,343,1742,290,1742",
"word": "Secretary"
}, {
"boundingBox": "351,1720,362,1720,362,1742,351,1742",
"word": "Xi"
}, {
"boundingBox": "367,1720,397,1719,397,1741,367,1742",
"word": "called"
}, {
"boundingBox": "406,1719,417,1719,417,1741,406,1741",
"word": "on"
}, {
"boundingBox": "425,1719,439,1719,439,1741,425,1741",
"word": "the"
}, {
"boundingBox": "450,1719,466,1719,466,1741,450,1741",
"word": "CCP"
}, {
"boundingBox": "474,1719,483,1719,483,1741,474,1741",
"word": "to"
}, {
"boundingBox": "491,1719,535,1718,535,1740,491,1741",
"word": "prepare"
}, {
"boundingBox": "543,1718,557,1718,557,1740,543,1740",
"word": "for"
}, {
"boundingBox": "565,1718,568,1718,568,1740,565,1740",
"word": "a"
}, {
"boundingBox": "576,1717,636,1717,636,1739,576,1739",
"word": "\"long-term"
}],
"text": "with the West In 2013, General Secretary Xi called on the CCP to prepare for a \"long-term",
"lang": "en"
}, {
"boundingBox": "82,1731,636,1731,636,1762,82,1762",
"text_height": 25,
"words": [{
"boundingBox": "82,1737,125,1736,125,1761,82,1762",
"word": "period"
}, {
"boundingBox": "135,1736,144,1736,144,1761,135,1761",
"word": "of"
}, {
"boundingBox": "153,1736,225,1736,225,1761,153,1761",
"word": "cooperation"
}, {
"boundingBox": "234,1736,253,1736,253,1761,234,1761",
"word": "and"
}, {
"boundingBox": "262,1736,309,1736,309,1761,262,1761",
"word": "conflict\""
}, {
"boundingBox": "318,1736,365,1736,365,1761,318,1761",
"word": "between"
}, {
"boundingBox": "375,1736,396,1735,396,1760,375,1761",
"word": "two"
}, {
"boundingBox": "406,1735,465,1735,465,1760,406,1760",
"word": "competing"
}, {
"boundingBox": "474,1734,521,1734,521,1759,474,1759",
"word": "systems"
}, {
"boundingBox": "530,1734,549,1733,549,1758,530,1759",
"word": "and"
}, {
"boundingBox": "559,1733,608,1732,608,1757,559,1758",
"word": "declared"
}, {
"boundingBox": "618,1731,636,1731,636,1756,618,1756",
"word": "that"
}],
"text": "period of cooperation and conflict\" between two competing systems and declared that",
"lang": "en"
}, {
"boundingBox": "89,1752,456,1752,456,1775,89,1775",
"text_height": 22,
"words": [{
"boundingBox": "89,1753,152,1752,152,1774,89,1775",
"word": "capitalism"
}, {
"boundingBox": "157,1752,165,1752,165,1774,157,1774",
"word": "is"
}, {
"boundingBox": "174,1752,207,1752,207,1774,174,1774",
"word": "bound"
}, {
"boundingBox": "215,1752,223,1752,223,1774,215,1774",
"word": "to"
}, {
"boundingBox": "229,1752,245,1752,245,1774,229,1774",
"word": "die"
}, {
"boundingBox": "253,1752,270,1753,270,1775,253,1774",
"word": "out"
}, {
"boundingBox": "275,1753,292,1753,292,1775,275,1775",
"word": "and"
}, {
"boundingBox": "303,1753,352,1753,352,1775,303,1775",
"word": "socialism"
}, {
"boundingBox": "358,1753,366,1753,366,1775,358,1775",
"word": "is"
}, {
"boundingBox": "374,1753,407,1753,407,1775,374,1775",
"word": "bound"
}, {
"boundingBox": "415,1753,424,1753,424,1775,415,1775",
"word": "to"
}, {
"boundingBox": "432,1753,456,1752,456,1774,432,1775",
"word": "win.\""
}],
"text": "capitalism is bound to die out and socialism is bound to win.\"",
"lang": "en"
}]
}, {
"boundingBox": "285,1862,426,1862,426,1899,285,1899",
"dir": "h",
"lang": "yue",
"lines": [{
"boundingBox": "300,1862,426,1862,426,1891,300,1891",
"text_height": 27,
"words": [{
"boundingBox": "300,1862,426,1864,426,1891,300,1889",
"word": "aWSMH"
}],
"text": "aWSMH",
"lang": "yue"
}, {
"boundingBox": "285,1869,327,1869,327,1899,285,1899",
"text_height": 30,
"words": [{
"boundingBox": "285,1869,327,1869,327,1899,285,1899",
"word": "。"
}],
"text": "。",
"lang": "yue"
}]
}],
"exif": "UP",
"scene": ""
}
}
支持图片格式 | 每小时最大查询次数 | 支持语言 |
---|---|---|
jpgpngbmp | 3600 | 中文/英文 |
错误码 | 含义 |
---|---|
101 | 缺少必填的参数,首先确保必填参数齐全,然后,确认参数书写是否正确。 |
102 | 不支持的语言类型 |
103 | 翻译文本过长 |
104 | 不支持的API类型 |
105 | 不支持的签名类型 |
106 | 不支持的响应类型 |
107 | 不支持的传输加密类型 |
108 | 应用ID无效,注册账号,登录后台创建应用和实例并完成绑定,可获得应用ID和应用密钥等信息 |
109 | batchLog格式不正确 |
110 | 无相关服务的有效实例,应用没有绑定服务实例,可以新建服务实例,绑定服务实例。注:某些服务的结果发音需要tts实例,需要在控制台创建语音合成实例绑定应用后方能使用。 |
111 | 开发者账号无效 |
112 | 请求服务无效 |
113 | q不能为空 |
114 | 不支持的图片传输方式 |
201 | 解密失败,可能为DES,BASE64,URLDecode的错误 |
202 | 签名检验失败,如果确认应用ID和应用密钥的正确性,仍返回202,一般是编码问题。请确保 img 为 UTF-8 编码. |
203 | 访问IP地址不在可访问IP列表 |
205 | 请求的接口与应用的平台类型不一致,确保接入方式(Android SDK、IOS SDK、API)与创建的应用平台类型一致。如有疑问请参考入门指南 |
206 | 因为时间戳无效导致签名校验失败 |
207 | 重放请求 |
301 | 辞典查询失败 |
302 | 翻译查询失败 |
303 | 服务端的其它异常 |
304 | 会话闲置太久超时 |
401 | 账户已经欠费停 |
402 | offlinesdk不可用 |
411 | 访问频率受限,请稍后访问 |
412 | 长请求过于频繁,请稍后访问 |
1001 | 无效的OCR类型 |
1002 | 不支持的OCR image类型 |
1003 | 不支持的OCR Language类型 |
1004 | 识别图片过大 |
1201 | 图片base64解密失败 |
1301 | OCR段落识别失败 |
1411 | 访问频率受限 |
1412 | 超过最大识别字节数 |
2003 | 不支持的语言识别Language类型 |
2004 | 合成字符过长 |
2005 | 不支持的音频文件类型 |
2006 | 不支持的发音类型 |
2201 | 解密失败 |
2301 | 服务的异常 |
2411 | 访问频率受限,请稍后访问 |
2412 | 超过最大请求字符数 |
3001 | 不支持的语音格式 |
3002 | 不支持的语音采样率 |
3003 | 不支持的语音声道 |
3004 | 不支持的语音上传类型 |
3005 | 不支持的语言类型 |
3006 | 不支持的识别类型 |
3007 | 识别音频文件过大 |
3008 | 识别音频时长过长 |
3009 | 不支持的音频文件类型 |
3010 | 不支持的发音类型 |
3201 | 解密失败 |
3301 | 语音识别失败 |
3302 | 语音翻译失败 |
3303 | 服务的异常 |
3411 | 访问频率受限,请稍后访问 |
3412 | 超过最大请求字符数 |
4001 | 不支持的语音识别格式 |
4002 | 不支持的语音识别采样率 |
4003 | 不支持的语音识别声道 |
4004 | 不支持的语音上传类型 |
4005 | 不支持的语言类型 |
4006 | 识别音频文件过大 |
4007 | 识别音频时长过长 |
4201 | 解密失败 |
4301 | 语音识别失败 |
4303 | 服务的异常 |
4411 | 访问频率受限,请稍后访问 |
4412 | 超过最大请求时长 |
5001 | 无效的OCR类型 |
5002 | 不支持的OCR image类型 |
5003 | 不支持的语言类型 |
5004 | 识别图片过大 |
5005 | 不支持的图片类型 |
5006 | 文件为空 |
5201 | 解密错误,图片base64解密失败 |
5301 | OCR段落识别失败 |
5411 | 访问频率受限 |
5412 | 超过最大识别流量 |
9001 | 不支持的语音格式 |
9002 | 不支持的语音采样率 |
9003 | 不支持的语音声道 |
9004 | 不支持的语音上传类型 |
9005 | 不支持的语音识别 Language类型 |
9301 | ASR识别失败 |
9303 | 服务器内部错误 |
9411 | 访问频率受限(超过最大调用次数) |
9412 | 超过最大处理语音长度 |
10001 | 无效的OCR类型 |
10002 | 不支持的OCR image类型 |
10004 | 识别图片过大 |
10201 | 图片base64解密失败 |
10301 | OCR段落识别失败 |
10411 | 访问频率受限 |
10412 | 超过最大识别流量 |
11001 | 不支持的语音识别格式 |
11002 | 不支持的语音识别采样率 |
11003 | 不支持的语音识别声道 |
11004 | 不支持的语音上传类型 |
11005 | 不支持的语言类型 |
11006 | 识别音频文件过大 |
11007 | 识别音频时长过长,最大支持30s |
11201 | 解密失败 |
11301 | 语音识别失败 |
11303 | 服务的异常 |
11411 | 访问频率受限,请稍后访问 |
11412 | 超过最大请求时长 |
12001 | 图片尺寸过大 |
12002 | 图片base64解密失败 |
12003 | 引擎服务器返回错误 |
12004 | 图片为空 |
12005 | 不支持的识别图片类型 |
12006 | 图片无匹配结果 |
13001 | 不支持的角度类型 |
13002 | 不支持的文件类型 |
13003 | 表格识别图片过大 |
13004 | 文件为空 |
13301 | 表格识别失败 |
15001 | 需要图片 |
15002 | 图片过大(1M) |
15003 | 服务调用失败 |
17001 | 需要图片 |
17002 | 图片过大(1M) |
17003 | 识别类型未找到 |
17004 | 不支持的识别类型 |
17005 | 服务调用失败 |