├── .gitignore
├── LICENSE
├── README.md
├── _svrs_address.txt
├── coverage.cov
├── go.mod
├── goc.log
├── iancoleman
└── orderedmap.go
├── index.html
├── main.go
├── unitauto-go
├── unitauto-go_profile_listen_addr
└── unitauto
├── method_util.go
├── server.go
└── test
└── test_util.go
/.gitignore:
--------------------------------------------------------------------------------
1 | # Binaries for programs and plugins
2 | *.exe~
3 | *.dll
4 | *.so
5 | *.dylib
6 |
7 | # Test binary, built with `go test -c`
8 | *.test
9 |
10 | # Output of the go coverage tool, specifically when used with LiteIDE
11 | *.out
12 |
13 | # Dependency directories (remove the comment below to include it)
14 | # vendor/
15 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | Apache License
2 | Version 2.0, January 2004
3 | http://www.apache.org/licenses/
4 |
5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6 |
7 | 1. Definitions.
8 |
9 | "License" shall mean the terms and conditions for use, reproduction,
10 | and distribution as defined by Sections 1 through 9 of this document.
11 |
12 | "Licensor" shall mean the copyright owner or entity authorized by
13 | the copyright owner that is granting the License.
14 |
15 | "Legal Entity" shall mean the union of the acting entity and all
16 | other entities that control, are controlled by, or are under common
17 | control with that entity. For the purposes of this definition,
18 | "control" means (i) the power, direct or indirect, to cause the
19 | direction or management of such entity, whether by contract or
20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the
21 | outstanding shares, or (iii) beneficial ownership of such entity.
22 |
23 | "You" (or "Your") shall mean an individual or Legal Entity
24 | exercising permissions granted by this License.
25 |
26 | "Source" form shall mean the preferred form for making modifications,
27 | including but not limited to software source code, documentation
28 | source, and configuration files.
29 |
30 | "Object" form shall mean any form resulting from mechanical
31 | transformation or translation of a Source form, including but
32 | not limited to compiled object code, generated documentation,
33 | and conversions to other media types.
34 |
35 | "Work" shall mean the work of authorship, whether in Source or
36 | Object form, made available under the License, as indicated by a
37 | copyright notice that is included in or attached to the work
38 | (an example is provided in the Appendix below).
39 |
40 | "Derivative Works" shall mean any work, whether in Source or Object
41 | form, that is based on (or derived from) the Work and for which the
42 | editorial revisions, annotations, elaborations, or other modifications
43 | represent, as a whole, an original work of authorship. For the purposes
44 | of this License, Derivative Works shall not include works that remain
45 | separable from, or merely link (or bind by name) to the interfaces of,
46 | the Work and Derivative Works thereof.
47 |
48 | "Contribution" shall mean any work of authorship, including
49 | the original version of the Work and any modifications or additions
50 | to that Work or Derivative Works thereof, that is intentionally
51 | submitted to Licensor for inclusion in the Work by the copyright owner
52 | or by an individual or Legal Entity authorized to submit on behalf of
53 | the copyright owner. For the purposes of this definition, "submitted"
54 | means any form of electronic, verbal, or written communication sent
55 | to the Licensor or its representatives, including but not limited to
56 | communication on electronic mailing lists, source code control systems,
57 | and issue tracking systems that are managed by, or on behalf of, the
58 | Licensor for the purpose of discussing and improving the Work, but
59 | excluding communication that is conspicuously marked or otherwise
60 | designated in writing by the copyright owner as "Not a Contribution."
61 |
62 | "Contributor" shall mean Licensor and any individual or Legal Entity
63 | on behalf of whom a Contribution has been received by Licensor and
64 | subsequently incorporated within the Work.
65 |
66 | 2. Grant of Copyright License. Subject to the terms and conditions of
67 | this License, each Contributor hereby grants to You a perpetual,
68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69 | copyright license to reproduce, prepare Derivative Works of,
70 | publicly display, publicly perform, sublicense, and distribute the
71 | Work and such Derivative Works in Source or Object form.
72 |
73 | 3. Grant of Patent License. Subject to the terms and conditions of
74 | this License, each Contributor hereby grants to You a perpetual,
75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76 | (except as stated in this section) patent license to make, have made,
77 | use, offer to sell, sell, import, and otherwise transfer the Work,
78 | where such license applies only to those patent claims licensable
79 | by such Contributor that are necessarily infringed by their
80 | Contribution(s) alone or by combination of their Contribution(s)
81 | with the Work to which such Contribution(s) was submitted. If You
82 | institute patent litigation against any entity (including a
83 | cross-claim or counterclaim in a lawsuit) alleging that the Work
84 | or a Contribution incorporated within the Work constitutes direct
85 | or contributory patent infringement, then any patent licenses
86 | granted to You under this License for that Work shall terminate
87 | as of the date such litigation is filed.
88 |
89 | 4. Redistribution. You may reproduce and distribute copies of the
90 | Work or Derivative Works thereof in any medium, with or without
91 | modifications, and in Source or Object form, provided that You
92 | meet the following conditions:
93 |
94 | (a) You must give any other recipients of the Work or
95 | Derivative Works a copy of this License; and
96 |
97 | (b) You must cause any modified files to carry prominent notices
98 | stating that You changed the files; and
99 |
100 | (c) You must retain, in the Source form of any Derivative Works
101 | that You distribute, all copyright, patent, trademark, and
102 | attribution notices from the Source form of the Work,
103 | excluding those notices that do not pertain to any part of
104 | the Derivative Works; and
105 |
106 | (d) If the Work includes a "NOTICE" text file as part of its
107 | distribution, then any Derivative Works that You distribute must
108 | include a readable copy of the attribution notices contained
109 | within such NOTICE file, excluding those notices that do not
110 | pertain to any part of the Derivative Works, in at least one
111 | of the following places: within a NOTICE text file distributed
112 | as part of the Derivative Works; within the Source form or
113 | documentation, if provided along with the Derivative Works; or,
114 | within a display generated by the Derivative Works, if and
115 | wherever such third-party notices normally appear. The contents
116 | of the NOTICE file are for informational purposes only and
117 | do not modify the License. You may add Your own attribution
118 | notices within Derivative Works that You distribute, alongside
119 | or as an addendum to the NOTICE text from the Work, provided
120 | that such additional attribution notices cannot be construed
121 | as modifying the License.
122 |
123 | You may add Your own copyright statement to Your modifications and
124 | may provide additional or different license terms and conditions
125 | for use, reproduction, or distribution of Your modifications, or
126 | for any such Derivative Works as a whole, provided Your use,
127 | reproduction, and distribution of the Work otherwise complies with
128 | the conditions stated in this License.
129 |
130 | 5. Submission of Contributions. Unless You explicitly state otherwise,
131 | any Contribution intentionally submitted for inclusion in the Work
132 | by You to the Licensor shall be under the terms and conditions of
133 | this License, without any additional terms or conditions.
134 | Notwithstanding the above, nothing herein shall supersede or modify
135 | the terms of any separate license agreement you may have executed
136 | with Licensor regarding such Contributions.
137 |
138 | 6. Trademarks. This License does not grant permission to use the trade
139 | names, trademarks, service marks, or product names of the Licensor,
140 | except as required for reasonable and customary use in describing the
141 | origin of the Work and reproducing the content of the NOTICE file.
142 |
143 | 7. Disclaimer of Warranty. Unless required by applicable law or
144 | agreed to in writing, Licensor provides the Work (and each
145 | Contributor provides its Contributions) on an "AS IS" BASIS,
146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147 | implied, including, without limitation, any warranties or conditions
148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149 | PARTICULAR PURPOSE. You are solely responsible for determining the
150 | appropriateness of using or redistributing the Work and assume any
151 | risks associated with Your exercise of permissions under this License.
152 |
153 | 8. Limitation of Liability. In no event and under no legal theory,
154 | whether in tort (including negligence), contract, or otherwise,
155 | unless required by applicable law (such as deliberate and grossly
156 | negligent acts) or agreed to in writing, shall any Contributor be
157 | liable to You for damages, including any direct, indirect, special,
158 | incidental, or consequential damages of any character arising as a
159 | result of this License or out of the use or inability to use the
160 | Work (including but not limited to damages for loss of goodwill,
161 | work stoppage, computer failure or malfunction, or any and all
162 | other commercial damages or losses), even if such Contributor
163 | has been advised of the possibility of such damages.
164 |
165 | 9. Accepting Warranty or Additional Liability. While redistributing
166 | the Work or Derivative Works thereof, You may choose to offer,
167 | and charge a fee for, acceptance of support, warranty, indemnity,
168 | or other liability obligations and/or rights consistent with this
169 | License. However, in accepting such obligations, You may act only
170 | on Your own behalf and on Your sole responsibility, not on behalf
171 | of any other Contributor, and only if You agree to indemnify,
172 | defend, and hold each Contributor harmless for any liability
173 | incurred by, or claims asserted against, such Contributor by reason
174 | of your accepting any such warranty or additional liability.
175 |
176 | END OF TERMS AND CONDITIONS
177 |
178 | APPENDIX: How to apply the Apache License to your work.
179 |
180 | To apply the Apache License to your work, attach the following
181 | boilerplate notice, with the fields enclosed by brackets "[]"
182 | replaced with your own identifying information. (Don't include
183 | the brackets!) The text should be enclosed in the appropriate
184 | comment syntax for the file format. We also recommend that a
185 | file or class name and description of purpose be included on the
186 | same "printed page" as the copyright notice for easier
187 | identification within third-party archives.
188 |
189 | Copyright ©2023 TommyLemon(https://github.com/TommyLemon)
190 |
191 | Licensed under the Apache License, Version 2.0 (the "License");
192 | you may not use this file except in compliance with the License.
193 | You may obtain a copy of the License at
194 |
195 | http://www.apache.org/licenses/LICENSE-2.0
196 |
197 | Unless required by applicable law or agreed to in writing, software
198 | distributed under the License is distributed on an "AS IS" BASIS,
199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200 | See the License for the specific language governing permissions and
201 | limitations under the License.
202 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # unitauto-go
2 | UnitAuto Go 库,可通过 GitHub 仓库等远程依赖。
3 | UnitAuto Go Library for remote dependencies with GitHub repo, etc.
4 |
5 |
6 |
7 | 同步纯函数:
8 | Sync pure function:
9 | https://github.com/TommyLemon/unitauto-go/blob/main/unitauto/test/test_util.go#L25-L27
10 |
11 |
12 | struct 成员函数:
13 | strcut member function:
14 | https://github.com/TommyLemon/unitauto-go/blob/main/unitauto/test/test_util.go#L88-L90
15 |
16 |
17 |
18 | 协程异步函数:
19 | goroutine function:
20 | https://github.com/TommyLemon/unitauto-go/blob/main/unitauto/test/test_util.go#L33-L45
21 |
22 |
23 | 异步回调函数:
24 | async callback function:
25 | https://github.com/TommyLemon/unitauto-go/blob/main/unitauto/test/test_util.go#L72-L81
26 |
27 |
28 |
29 |
30 | 代码覆盖率统计:
31 | Code coverage:
32 | https://github.com/qiniu/goc/issues/349
33 |
34 |
35 |
36 |
37 |
38 | **Demo:** https://github.com/TommyLemon/unitauto-go-demo
39 |
40 |
41 |
42 | #### 1. 在 go.mod 中添加 GitHub 仓库
43 | #### 1. Add the GitHub repository to go.mod
44 | ```go
45 | require (
46 | github.com/TommyLemon/unitauto-go v1.0.0
47 | )
48 | ```
49 |
50 |
51 | #### 2. 执行 go get 命令
52 | #### 2. Run go get command
53 | ```sh
54 | go get github.com/TommyLemon/unitauto-go@v1.0.0
55 | ```
56 |
57 |
58 | #### 3. 启动单元测试服务
59 | #### 3. Start unit testing server
60 | https://github.com/TommyLemon/unitauto-go/blob/main/main.go#L7-L12
61 | ```go
62 | func main() {
63 | unitauto.Start(8082)
64 | }
65 | ```
66 |
67 |
68 |
69 | #### 4. 参考主项目文档来测试
70 | #### 4. Test by following the main repo
71 |
72 | https://github.com/TommyLemon/UnitAuto
73 |
74 | 由于 Go 的反射限制,目前做不到像 Java, Kotlin 版几乎绝对零代码,还需要注册 func 和 struct 的实例,
75 | 不过注册代码可以通过 UnitAuto-Admin 前端管理网页设置项 \[查看、同步方法文档] 来生成,复制粘贴到被测项目中:
76 | Due to the limitation of Go, it's not almost absolutely coding free like Java and Kotlin,
77 | and you need to write few code to register the funcs and structs to be tested.
78 | However, the code can be generated by clicking the setting item [View/Sync doc] of UnitAuto-Admin,
79 | then you can copy and pasted the "ginCode" into the project under test instead of coding:
80 |
81 | https://github.com/TommyLemon/unitauto-go/blob/main/main.go
82 |
83 |
84 |
85 |
86 |
87 | ### 5. 关于作者
88 | ### 5. Author
89 | [https://github.com/TommyLemon](https://github.com/TommyLemon)
90 |
91 |
92 | 如果有什么问题或建议可以 [去 APIAuto 提 issue](https://github.com/TommyLemon/APIAuto/issues),交流技术,分享经验。
93 | 如果你解决了某些 bug,或者新增了一些功能,欢迎 [提 PR 贡献代码](https://github.com/Tencent/APIJSON/blob/master/CONTRIBUTING.md),感激不尽。
94 |
95 | If you have any questions or suggestions, you can [create an issue](https://github.com/TommyLemon/APIAuto/issues).
96 | If you can added a feature or fixed a bug, please [create a pull request](https://github.com/TommyLemon/unitauto-go/pulls), thank you~
97 |
98 |
99 | ### 6. 其它项目
100 | ### 6. Link
101 | 创作不易、坚持更难,右上角点 ⭐ Star 支持下吧,谢谢 ^\_^
102 | Please ⭐ Star the repos that you like ^\_^
103 |
104 | [UnitAuto](https://github.com/TommyLemon/UnitAuto) 机器学习零代码单元测试平台,零代码、全方位、自动化 测试 方法/函数 的正确性、可用性和性能
105 |
106 | [unitauto-go-demo](https://github.com/TommyLemon/unitauto-go-demo) UnitAuto Go Demo,提供用来做单元测试的业务函数
107 |
108 | [unitauto-py](https://github.com/TommyLemon/unitauto-py) UnitAuto Python 库,可通过 pip 仓库等远程依赖
109 |
110 | [APIJSON](https://github.com/Tencent/APIJSON) 🚀 腾讯零代码、全功能、强安全 ORM 库 🏆 后端接口和文档零代码,前端(客户端) 定制返回 JSON 的数据和结构
111 |
112 | [apijson-go](https://github.com/glennliao/apijson-go) Go 版 APIJSON, 基于Go(>=1.18) + GoFrame2, 支持查询、单表增删改、权限管理等
113 |
114 | [APIAuto](https://github.com/TommyLemon/APIAuto) 敏捷开发最强大易用的 HTTP 接口工具,机器学习零代码测试、生成代码与静态检查、生成文档与光标悬浮注释,集 文档、测试、Mock、调试、管理 于一体的一站式体验
115 |
116 | [SQLAuto](https://github.com/TommyLemon/SQLAuto) 智能零代码自动化测试 SQL 语句执行结果的数据库工具,任意增删改查、任意 SQL 模板变量、一键批量生成参数组合、快速构造大量测试数据
117 |
118 | [UIGO](https://github.com/TommyLemon/UIGO) 📱 零代码快准稳 UI 智能录制回放平台 🚀 自动兼容任意宽高比分辨率屏幕,自动精准等待网络请求,录制回放快、准、稳!
119 |
--------------------------------------------------------------------------------
/_svrs_address.txt:
--------------------------------------------------------------------------------
1 | unitauto-go&http://127.0.0.1:51675
2 |
--------------------------------------------------------------------------------
/coverage.cov:
--------------------------------------------------------------------------------
1 | mode: count
2 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:14.30,16.2 1 0
3 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:18.37,20.2 1 0
4 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:27.37,27.60 1 0
5 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:28.37,28.88 1 0
6 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:29.37,29.82 1 0
7 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:37.24,43.2 5 0
8 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:45.45,47.2 1 0
9 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:49.58,50.21 1 0
10 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:50.21,52.3 1 0
11 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:53.2,54.20 2 0
12 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:57.57,58.21 1 0
13 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:58.21,60.3 1 0
14 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:61.2,62.13 2 0
15 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:62.13,64.3 1 0
16 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:65.2,65.23 1 0
17 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:68.41,71.9 2 0
18 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:71.9,73.3 1 0
19 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:75.2,75.27 1 0
20 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:75.27,76.15 1 0
21 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:76.15,78.9 2 0
22 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:82.2,82.23 1 0
23 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:85.38,87.2 1 0
24 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:90.61,92.2 1 0
25 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:95.65,97.29 2 0
26 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:97.29,99.3 1 0
27 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:101.2,103.29 2 0
28 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:103.29,105.3 1 0
29 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:108.52,109.21 1 0
30 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:109.21,111.3 1 0
31 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:112.2,113.16 2 0
32 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:113.16,115.3 1 0
33 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:116.2,117.38 2 0
34 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:117.38,119.3 1 0
35 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:120.2,121.33 2 0
36 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:124.63,126.6 2 0
37 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:126.6,128.17 2 0
38 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:128.17,130.4 1 0
39 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:131.3,131.58 1 0
40 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:131.58,133.4 1 0
41 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:134.3,135.18 2 0
42 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:135.18,137.29 1 0
43 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:137.29,138.17 1 0
44 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:138.17,140.11 2 0
45 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:143.4,143.31 1 0
46 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:144.9,147.4 2 0
47 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:149.3,150.17 2 0
48 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:150.17,152.4 1 0
49 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:153.3,153.42 1 0
50 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:153.42,154.17 1 0
51 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:155.13,156.65 1 0
52 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:156.65,162.58 2 0
53 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:162.58,164.7 1 0
54 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:165.6,165.28 1 0
55 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:166.11,166.60 1 0
56 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:166.60,172.58 2 0
57 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:172.58,174.7 1 0
58 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:175.6,175.28 1 0
59 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:176.11,176.70 1 0
60 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:176.70,178.6 1 0
61 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:179.13,180.56 1 0
62 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:180.56,181.66 1 0
63 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:181.66,183.7 1 0
64 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:184.11,184.81 1 0
65 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:184.81,186.6 1 0
66 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:192.77,193.28 1 0
67 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:193.28,195.17 2 0
68 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:195.17,197.4 1 0
69 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:198.3,198.42 1 0
70 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:198.42,199.17 1 0
71 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:200.13,201.23 1 0
72 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:201.23,202.61 1 0
73 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:202.61,208.59 2 0
74 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:208.59,210.8 1 0
75 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:211.7,211.24 1 0
76 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:212.12,212.56 1 0
77 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:212.56,218.59 2 0
78 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:218.59,220.8 1 0
79 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:221.7,221.24 1 0
80 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:222.12,222.71 1 0
81 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:222.71,224.7 1 0
82 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:225.11,225.70 1 0
83 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:225.70,227.6 1 0
84 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:228.13,229.23 1 0
85 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:229.23,230.52 1 0
86 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:230.52,231.65 1 0
87 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:231.65,233.8 1 0
88 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:234.12,234.80 1 0
89 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:234.80,236.7 1 0
90 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:237.11,237.79 1 0
91 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:237.79,239.6 1 0
92 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:240.13,241.15 1 0
93 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:247.51,252.27 5 0
94 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:252.27,253.12 1 0
95 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:253.12,255.4 1 0
96 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:257.3,257.43 1 0
97 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:257.43,259.4 1 0
98 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:260.3,262.53 2 0
99 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:262.53,264.4 1 0
100 | github.com/TommyLemon/unitauto-go/iancoleman/orderedmap.go:266.2,267.25 2 0
101 | github.com/TommyLemon/unitauto-go/main.go:7.13,12.2 2 1
102 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:93.100,95.2 1 0
103 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:97.107,98.80 1 0
104 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:98.80,100.3 1 0
105 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:100.8,102.3 1 0
106 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:105.136,107.33 2 0
107 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:107.33,109.3 1 0
108 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:111.2,112.24 2 0
109 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:112.24,114.3 1 0
110 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:115.2,115.16 1 0
111 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:119.106,121.2 1 0
112 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:123.135,125.2 1 0
113 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:215.47,216.14 1 19
114 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:216.14,218.3 1 0
115 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:219.2,220.14 2 19
116 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:220.14,222.3 1 18
117 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:223.2,223.18 1 1
118 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:226.45,227.14 1 0
119 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:227.14,229.3 1 0
120 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:230.2,231.14 2 0
121 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:231.14,233.3 1 0
122 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:235.2,235.18 1 0
123 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:236.13,237.24 1 0
124 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:238.13,239.24 1 0
125 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:240.15,241.26 1 0
126 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:242.15,243.26 1 0
127 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:245.2,245.16 1 0
128 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:248.49,249.14 1 0
129 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:249.14,251.3 1 0
130 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:252.2,253.14 2 0
131 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:253.14,255.3 1 0
132 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:257.2,257.18 1 0
133 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:258.11,259.24 1 0
134 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:260.13,261.26 1 0
135 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:262.15,263.28 1 0
136 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:264.15,265.28 1 0
137 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:267.2,267.18 1 0
138 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:270.49,271.14 1 6
139 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:271.14,273.3 1 0
140 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:274.2,275.14 2 6
141 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:275.14,277.3 1 6
142 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:278.2,278.18 1 0
143 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:279.11,280.24 1 0
144 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:281.13,282.26 1 0
145 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:283.15,284.28 1 0
146 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:285.15,286.28 1 0
147 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:288.2,288.18 1 0
148 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:291.48,292.14 1 37
149 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:292.14,294.3 1 0
150 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:295.2,296.14 2 37
151 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:296.14,298.3 1 11
152 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:299.2,299.22 1 26
153 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:302.56,303.14 1 6
154 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:303.14,305.3 1 0
155 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:306.2,307.14 2 6
156 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:307.14,309.3 1 5
157 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:310.2,310.27 1 1
158 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:313.47,314.14 1 20
159 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:314.14,316.3 1 0
160 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:317.2,318.14 2 20
161 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:318.14,320.3 1 14
162 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:321.2,321.18 1 6
163 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:322.24,324.44 2 1
164 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:324.44,326.4 1 1
165 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:327.3,327.12 1 1
166 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:335.2,335.18 1 5
167 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:338.61,339.14 1 0
168 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:339.14,341.3 1 0
169 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:342.2,343.14 2 0
170 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:343.14,345.3 1 0
171 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:346.2,346.29 1 0
172 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:349.70,351.14 2 0
173 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:351.14,353.3 1 0
174 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:354.2,355.14 2 0
175 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:355.14,357.3 1 0
176 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:359.2,359.39 1 0
177 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:359.39,361.3 1 0
178 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:362.2,362.11 1 0
179 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:365.63,368.74 3 0
180 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:368.74,370.3 1 0
181 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:372.2,374.32 2 0
182 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:374.32,376.3 1 0
183 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:378.2,378.11 1 0
184 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:381.60,383.33 2 0
185 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:383.33,385.3 1 0
186 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:386.2,386.18 1 0
187 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:389.52,390.14 1 0
188 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:390.14,392.3 1 0
189 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:393.2,394.14 2 0
190 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:394.14,396.3 1 0
191 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:398.2,398.22 1 0
192 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:401.53,402.47 1 0
193 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:402.47,404.3 1 0
194 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:404.8,407.3 2 0
195 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:424.52,427.16 2 0
196 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:427.16,429.3 1 0
197 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:431.2,440.24 8 0
198 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:440.24,443.44 3 0
199 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:443.44,445.19 2 0
200 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:445.19,448.34 2 0
201 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:448.34,451.21 3 0
202 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:451.21,453.7 1 0
203 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:459.2,460.17 2 0
204 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:460.17,462.3 1 0
205 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:464.2,465.24 2 0
206 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:465.24,467.3 1 0
207 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:470.2,470.15 1 0
208 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:474.90,475.47 1 0
209 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:475.47,477.3 1 0
210 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:477.8,479.3 1 0
211 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:546.83,547.15 1 6
212 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:547.15,548.35 1 6
213 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:548.35,550.4 1 0
214 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:553.2,553.16 1 6
215 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:553.16,555.3 1 0
216 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:557.2,570.19 12 6
217 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:570.19,571.24 1 0
218 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:571.24,575.4 3 0
219 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:577.3,577.20 1 0
220 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:580.2,580.48 1 6
221 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:580.48,584.3 3 0
222 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:586.2,587.18 2 6
223 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:587.18,589.3 1 0
224 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:589.8,589.20 1 6
225 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:589.20,590.24 1 0
226 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:590.24,592.4 1 0
227 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:592.9,594.4 1 0
228 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:595.3,595.18 1 0
229 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:598.2,600.48 3 6
230 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:600.48,601.17 1 0
231 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:601.17,603.4 1 0
232 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:604.3,605.13 2 0
233 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:608.2,608.18 1 6
234 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:608.18,617.17 7 1
235 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:617.17,619.4 1 0
236 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:620.3,620.21 1 1
237 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:623.2,625.73 3 6
238 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:625.73,626.29 1 0
239 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:626.29,628.4 1 0
240 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:628.9,630.62 2 0
241 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:630.62,631.164 1 0
242 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:631.164,633.6 1 0
243 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:637.2,639.16 2 6
244 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:639.16,640.37 1 6
245 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:640.37,642.4 1 0
246 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:645.2,645.16 1 6
247 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:645.16,648.3 2 0
248 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:650.2,650.17 1 6
249 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:650.17,652.13 2 0
250 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:652.13,657.4 3 0
251 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:660.2,661.37 2 6
252 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:661.37,663.3 1 1
253 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:668.2,668.112 1 5
254 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:672.55,675.145 2 6
255 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:675.145,677.18 2 6
256 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:677.18,678.23 1 6
257 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:679.24,681.25 2 6
258 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:681.25,683.6 1 22
259 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:687.3,688.22 2 6
260 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:688.22,690.4 1 1
261 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:692.3,692.22 1 6
262 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:692.22,694.18 2 6
263 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:694.18,696.5 1 0
264 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:699.3,699.13 1 6
265 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:702.2,702.16 1 6
266 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:702.16,705.3 2 0
267 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:706.2,706.12 1 6
268 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:709.133,712.16 3 0
269 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:712.16,714.3 1 0
270 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:716.2,727.21 7 0
271 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:727.21,728.52 1 0
272 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:728.52,730.4 1 0
273 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:736.31,743.2 1 1
274 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:745.33,747.2 1 11
275 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:748.35,750.2 1 10
276 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:752.33,754.2 1 11
277 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:755.33,757.2 1 4
278 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:758.33,760.2 1 11
279 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:762.69,763.16 1 19
280 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:763.16,765.3 1 0
281 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:766.2,768.26 3 19
282 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:768.26,770.3 1 13
283 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:772.2,773.25 2 6
284 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:773.25,777.65 4 10
285 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:777.65,779.4 1 1
286 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:779.9,779.40 1 9
287 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:779.40,784.18 5 3
288 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:784.18,787.5 2 1
289 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:789.4,789.46 1 3
290 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:790.9,790.38 1 6
291 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:790.38,794.26 4 6
292 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:794.26,796.5 1 6
293 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:797.4,800.26 4 6
294 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:801.9,801.44 1 0
295 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:801.44,805.26 4 0
296 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:805.26,807.5 1 0
297 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:808.4,811.26 4 0
298 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:812.9,815.18 3 0
299 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:815.18,817.5 1 0
300 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:817.10,819.5 1 0
301 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:821.4,822.26 2 0
302 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:826.2,826.19 1 6
303 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:826.19,828.3 1 0
304 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:829.2,829.12 1 6
305 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:836.72,838.23 2 6
306 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:838.23,840.3 1 0
307 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:840.8,842.37 2 6
308 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:842.37,844.4 1 6
309 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:847.2,847.16 1 6
310 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:847.16,850.71 3 6
311 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:850.71,852.4 1 6
312 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:855.2,856.16 2 0
313 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:856.16,858.3 1 0
314 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:907.2,907.15 1 0
315 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:910.102,911.46 1 0
316 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:911.46,913.3 1 0
317 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:914.2,914.11 1 0
318 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:914.11,916.15 2 0
319 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:916.15,918.4 1 0
320 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:921.2,923.16 3 0
321 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:923.16,925.3 1 0
322 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:926.2,926.17 1 0
323 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:934.53,935.19 1 1
324 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:935.19,937.3 1 0
325 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:938.2,939.16 2 1
326 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:939.16,941.17 2 1
327 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:941.17,943.4 1 1
328 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:970.2,970.19 1 0
329 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:980.103,981.16 1 0
330 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:981.16,983.3 1 0
331 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:985.2,985.24 1 0
332 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:985.24,987.3 1 0
333 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:989.2,989.30 1 0
334 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:989.30,991.3 1 0
335 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:993.2,993.21 1 0
336 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:993.21,996.22 2 0
337 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:996.22,998.4 1 0
338 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1000.3,1000.31 1 0
339 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1003.2,1003.22 1 0
340 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1014.145,1018.22 1 6
341 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1018.22,1020.3 1 0
342 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1022.2,1029.22 5 6
343 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1029.22,1031.17 2 5
344 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1031.17,1033.4 1 0
345 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1036.2,1039.49 3 6
346 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1039.49,1041.3 1 2
347 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1041.8,1041.30 1 4
348 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1041.30,1043.3 1 4
349 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1043.8,1045.3 1 0
350 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1047.2,1047.39 1 6
351 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1047.39,1049.3 1 0
352 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1051.2,1053.121 2 6
353 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1053.121,1059.22 4 6
354 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1059.22,1061.4 1 0
355 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1063.3,1066.33 3 6
356 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1066.33,1068.36 2 5
357 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1068.36,1070.5 1 5
358 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1071.4,1071.19 1 5
359 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1071.19,1073.5 1 0
360 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1073.10,1073.27 1 5
361 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1073.27,1075.5 1 5
362 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1078.3,1082.21 4 6
363 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1082.21,1085.36 2 5
364 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1085.36,1089.5 3 9
365 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1091.4,1091.45 1 5
366 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1094.3,1096.22 2 6
367 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1096.22,1098.18 2 6
368 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1098.18,1100.5 1 0
369 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1103.3,1103.13 1 6
370 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1106.2,1113.20 5 6
371 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1113.20,1114.35 1 5
372 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1114.35,1119.51 3 9
373 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1119.51,1124.16 3 1
374 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1124.16,1126.6 1 1
375 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1127.5,1127.43 1 1
376 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1127.43,1128.49 1 0
377 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1128.49,1129.24 1 0
378 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1130.27,1133.20 3 0
379 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1133.20,1135.9 1 0
380 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1136.8,1136.47 1 0
381 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1136.47,1137.17 1 0
382 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1139.8,1140.15 2 0
383 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1140.15,1142.9 1 0
384 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1145.7,1145.18 1 0
385 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1145.18,1146.13 1 0
386 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1150.6,1150.57 1 0
387 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1150.57,1151.23 1 0
388 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1152.26,1153.33 1 0
389 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1154.15,1166.18 10 0
390 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1166.18,1167.44 1 0
391 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1167.44,1169.26 2 0
392 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1169.26,1172.16 3 0
393 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1177.8,1178.17 2 0
394 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1178.17,1180.52 2 0
395 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1180.52,1181.27 1 0
396 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1182.30,1185.23 3 0
397 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1185.23,1187.12 1 0
398 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1188.11,1188.50 1 0
399 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1188.50,1189.20 1 0
400 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1191.11,1194.103 3 0
401 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1194.103,1201.21 5 0
402 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1201.21,1202.29 1 0
403 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1202.29,1204.14 1 0
404 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1204.19,1205.53 1 0
405 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1205.53,1207.15 1 0
406 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1209.13,1209.35 1 0
407 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1211.12,1212.22 2 0
408 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1212.22,1214.13 1 0
409 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1216.12,1218.19 2 0
410 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1218.19,1220.13 1 0
411 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1221.12,1221.22 1 0
412 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1226.9,1229.36 3 0
413 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1230.14,1232.9 1 0
414 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1234.12,1237.7 2 0
415 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1238.6,1238.14 1 0
416 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1241.5,1242.32 2 1
417 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1242.32,1243.57 1 0
418 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1243.57,1246.7 1 0
419 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1246.12,1248.7 1 0
420 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1249.6,1249.14 1 0
421 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1252.5,1254.36 3 1
422 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1254.36,1256.20 2 2
423 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1256.20,1258.7 1 0
424 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1261.5,1265.12 5 1
425 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1265.12,1267.6 1 1
426 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1269.5,1270.30 2 1
427 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1270.30,1272.6 1 0
428 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1273.5,1274.37 2 1
429 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1274.37,1276.20 2 1
430 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1276.20,1278.7 1 0
431 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1281.5,1282.118 2 1
432 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1282.118,1286.27 3 1
433 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1286.27,1290.21 4 2
434 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1290.21,1292.8 1 2
435 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1292.13,1292.30 1 0
436 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1292.30,1294.8 1 0
437 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1294.13,1294.33 1 0
438 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1294.33,1296.8 1 0
439 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1296.13,1296.35 1 0
440 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1296.35,1298.8 1 0
441 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1298.13,1298.34 1 0
442 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1298.34,1300.8 1 0
443 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1302.7,1305.8 1 2
444 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1308.6,1309.19 2 1
445 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1309.19,1311.7 1 1
446 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1313.6,1322.29 5 1
447 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1322.29,1325.7 2 1
448 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1327.6,1327.17 1 1
449 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1327.18,1329.7 0 0
450 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1329.12,1329.60 1 1
451 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1329.60,1333.18 4 0
452 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1333.18,1335.8 1 0
453 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1336.7,1336.32 1 0
454 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1336.32,1337.61 1 0
455 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1337.61,1339.9 1 0
456 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1339.14,1341.9 1 0
457 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1343.12,1344.57 1 1
458 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1344.57,1346.8 1 0
459 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1346.13,1348.8 1 1
460 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1351.6,1351.13 1 1
461 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1351.13,1353.21 2 1
462 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1353.21,1356.8 2 0
463 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1359.6,1359.15 1 1
464 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1362.10,1363.56 1 8
465 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1363.56,1365.6 1 8
466 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1365.11,1367.6 1 0
467 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1372.2,1380.27 6 6
468 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1380.27,1381.24 1 5
469 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1381.24,1383.12 2 0
470 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1386.3,1387.19 2 5
471 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1387.19,1389.4 1 3
472 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1389.9,1389.28 1 2
473 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1389.28,1391.4 1 1
474 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1391.9,1391.29 1 1
475 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1391.29,1393.4 1 0
476 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1393.9,1393.31 1 1
477 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1393.31,1395.4 1 1
478 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1395.9,1395.32 1 0
479 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1395.32,1397.4 1 0
480 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1397.9,1399.4 1 0
481 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1402.2,1402.13 1 6
482 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1402.13,1404.3 1 5
483 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1404.8,1404.19 1 1
484 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1404.19,1406.3 1 0
485 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1408.2,1408.12 1 6
486 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1408.12,1409.22 1 5
487 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1409.22,1412.18 3 5
488 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1412.18,1414.5 1 0
489 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1416.3,1416.18 1 5
490 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1419.2,1419.17 1 1
491 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1434.154,1435.44 1 0
492 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1435.44,1437.3 1 0
493 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1439.2,1440.16 2 0
494 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1440.16,1442.3 1 0
495 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1444.2,1456.16 10 0
496 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1456.16,1460.3 3 0
497 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1462.2,1465.27 3 0
498 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1465.27,1469.42 3 0
499 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1469.42,1471.18 2 0
500 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1471.18,1472.13 1 0
501 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1475.4,1481.17 5 0
502 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1481.17,1483.5 1 0
503 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1484.4,1484.42 1 0
504 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1484.42,1486.5 1 0
505 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1487.4,1491.19 4 0
506 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1491.19,1494.5 2 0
507 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1496.4,1496.18 1 0
508 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1496.18,1499.5 2 0
509 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1500.4,1503.24 3 0
510 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1503.24,1505.5 1 0
511 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1507.4,1510.63 3 0
512 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1510.63,1511.13 1 0
513 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1514.4,1518.17 3 0
514 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1518.17,1520.5 1 0
515 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1522.4,1534.76 10 0
516 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1534.76,1547.5 4 0
517 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1549.4,1549.57 1 0
518 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1549.57,1551.23 2 0
519 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1551.23,1553.29 2 0
520 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1553.29,1555.7 1 0
521 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1556.6,1556.39 1 0
522 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1559.5,1559.22 1 0
523 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1559.22,1563.27 2 0
524 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1563.27,1565.7 1 0
525 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1567.6,1567.16 1 0
526 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1567.16,1569.64 2 0
527 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1569.64,1570.16 1 0
528 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1573.7,1574.85 2 0
529 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1577.10,1578.40 1 0
530 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1578.40,1585.41 3 0
531 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1585.41,1587.25 2 0
532 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1587.25,1589.8 1 0
533 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1591.7,1591.24 1 0
534 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1591.24,1595.29 2 0
535 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1595.29,1597.9 1 0
536 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1599.8,1600.65 2 0
537 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1600.65,1601.17 1 0
538 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1604.8,1605.86 2 0
539 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1611.4,1611.18 1 0
540 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1611.18,1613.5 1 0
541 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1615.4,1615.27 1 0
542 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1615.27,1617.5 1 0
543 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1619.4,1619.23 1 0
544 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1619.23,1621.5 1 0
545 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1623.4,1623.26 1 0
546 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1623.26,1625.5 1 0
547 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1627.4,1627.38 1 0
548 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1627.38,1629.5 1 0
549 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1631.4,1631.30 1 0
550 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1634.3,1634.27 1 0
551 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1634.27,1636.4 1 0
552 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1639.2,1641.16 2 0
553 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1641.16,1645.3 3 0
554 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1647.2,1647.44 1 0
555 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1647.44,1656.3 1 0
556 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1658.2,1660.22 2 0
557 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1663.40,1665.2 1 0
558 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1667.40,1669.2 1 0
559 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1671.127,1672.26 1 6
560 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1672.26,1674.3 1 0
561 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1675.2,1675.33 1 6
562 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1675.33,1677.3 1 0
563 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1678.2,1678.67 1 6
564 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1678.67,1680.3 1 0
565 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1682.2,1682.39 1 6
566 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1682.39,1689.17 5 10
567 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1689.17,1691.4 1 0
568 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1693.3,1693.19 1 10
569 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1693.19,1694.75 1 0
570 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1694.75,1696.5 1 0
571 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1699.3,1699.65 1 10
572 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1699.65,1720.22 1 3
573 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1720.22,1721.50 1 1
574 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1721.50,1723.6 1 0
575 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1727.3,1728.18 2 10
576 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1731.2,1731.12 1 6
577 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1734.57,1735.51 1 0
578 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1735.51,1737.3 1 0
579 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1739.2,1744.32 5 0
580 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1744.32,1750.32 5 0
581 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1750.32,1752.4 1 0
582 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1754.3,1756.18 3 0
583 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1756.18,1758.4 1 0
584 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1759.3,1760.18 2 0
585 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1760.18,1762.4 1 0
586 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1763.3,1763.36 1 0
587 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1763.36,1765.4 1 0
588 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1767.3,1773.36 6 0
589 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1773.36,1776.21 3 0
590 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1776.21,1778.5 1 0
591 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1779.4,1785.18 4 0
592 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1785.18,1788.5 2 0
593 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1791.3,1794.37 4 0
594 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1794.37,1797.21 3 0
595 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1797.21,1799.5 1 0
596 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1800.4,1806.18 4 0
597 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1806.18,1809.5 2 0
598 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1812.3,1816.27 5 0
599 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1817.8,1819.19 2 0
600 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1820.22,1821.43 1 0
601 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1824.11,1825.44 1 0
602 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1827.3,1829.43 3 0
603 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1829.43,1831.4 1 0
604 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1834.3,1835.34 2 0
605 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1835.34,1837.4 1 0
606 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1839.3,1840.35 2 0
607 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1840.35,1842.4 1 0
608 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1844.3,1850.43 7 0
609 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1859.2,1859.28 1 0
610 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1859.28,1861.35 2 0
611 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1861.35,1863.4 1 0
612 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1865.3,1865.40 1 0
613 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1868.2,1868.12 1 0
614 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1871.75,1874.14 2 0
615 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1874.14,1876.3 1 0
616 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1878.2,1878.16 1 0
617 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1878.16,1880.3 1 0
618 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1882.2,1885.99 3 0
619 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1885.99,1887.3 1 0
620 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1888.2,1888.62 1 0
621 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1888.62,1890.3 1 0
622 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1892.2,1894.46 2 0
623 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1894.46,1896.3 1 0
624 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1898.2,1899.140 2 0
625 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1899.140,1901.3 1 0
626 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1903.2,1903.50 1 0
627 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1903.50,1906.20 3 0
628 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1906.20,1908.4 1 0
629 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1909.3,1909.19 1 0
630 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1913.2,1913.22 1 0
631 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1913.22,1915.3 1 0
632 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1917.2,1918.120 1 0
633 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1918.120,1919.15 1 0
634 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1919.15,1921.4 1 0
635 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1922.3,1922.28 1 0
636 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1925.2,1925.74 1 0
637 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1925.74,1926.15 1 0
638 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1926.15,1928.4 1 0
639 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1929.3,1929.31 1 0
640 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1931.2,1931.100 1 0
641 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1931.100,1932.15 1 0
642 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1932.15,1934.4 1 0
643 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1935.3,1935.33 1 0
644 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1938.2,1938.15 1 0
645 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1938.15,1940.3 1 0
646 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1942.2,1942.52 1 0
647 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1942.52,1945.26 3 0
648 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1945.26,1947.4 1 0
649 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1948.3,1948.13 1 0
650 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1951.2,1953.25 2 0
651 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1953.25,1955.26 2 0
652 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1955.26,1958.4 2 0
653 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1959.3,1959.13 1 0
654 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1962.2,1962.26 1 0
655 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1962.26,1965.37 3 0
656 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1965.37,1969.4 3 0
657 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1971.3,1971.18 1 0
658 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1971.18,1974.4 2 0
659 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1974.9,1974.26 1 0
660 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1974.26,1977.4 2 0
661 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1979.3,1980.13 2 0
662 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1983.2,1983.28 1 0
663 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1983.28,1984.39 1 0
664 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1984.39,1989.94 4 0
665 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1989.94,1991.13 2 0
666 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1994.4,1994.48 1 0
667 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1994.48,1996.13 2 0
668 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1999.4,1999.58 1 0
669 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:1999.58,2000.13 1 0
670 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2003.4,2003.52 1 0
671 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2006.3,2006.13 1 0
672 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2009.2,2009.31 1 0
673 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2009.31,2010.40 1 0
674 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2010.40,2015.35 4 0
675 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2015.35,2016.14 1 0
676 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2016.14,2018.6 1 0
677 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2019.5,2019.34 1 0
678 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2022.4,2024.36 3 0
679 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2024.36,2028.5 3 0
680 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2030.4,2031.19 2 0
681 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2031.19,2034.5 2 0
682 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2034.10,2034.27 1 0
683 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2034.27,2037.5 2 0
684 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2038.4,2040.19 2 0
685 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2043.3,2043.13 1 0
686 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2046.2,2046.12 1 0
687 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2054.60,2056.32 2 1
688 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2056.32,2059.17 3 0
689 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2059.17,2061.4 1 0
690 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2064.2,2064.16 1 1
691 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2064.16,2066.3 1 1
692 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2067.2,2067.29 1 1
693 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2075.54,2078.54 3 10
694 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2078.54,2080.3 1 8
695 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2080.8,2081.23 1 2
696 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2082.14,2083.33 1 0
697 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2086.3,2086.48 1 2
698 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2086.48,2088.4 1 2
699 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2088.9,2092.4 3 0
700 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2095.2,2095.10 1 10
701 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2098.44,2101.2 2 10
702 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2103.46,2108.2 4 6
703 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2110.53,2115.2 4 0
704 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2117.47,2118.38 1 0
705 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2118.38,2120.35 2 0
706 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2120.35,2122.4 1 0
707 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2123.3,2123.15 1 0
708 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2125.2,2125.12 1 0
709 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2128.47,2129.16 1 5
710 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2129.16,2131.3 1 0
711 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2132.2,2132.29 1 5
712 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2134.35,2135.19 1 5
713 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2135.19,2137.3 1 0
714 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2144.2,2144.30 1 5
715 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2144.30,2145.15 1 253
716 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2145.15,2146.12 1 7
717 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2149.3,2150.15 2 246
718 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2150.15,2151.12 1 0
719 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2153.3,2153.25 1 246
720 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2153.25,2155.4 1 5
721 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2158.2,2160.6 3 0
722 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2160.6,2162.16 2 0
723 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2162.16,2163.9 1 0
724 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2165.3,2166.23 2 0
725 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2169.2,2169.41 1 0
726 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2169.41,2171.3 1 0
727 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2173.2,2173.21 1 0
728 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2176.55,2178.28 2 0
729 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2178.28,2180.17 2 0
730 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2180.17,2182.4 1 0
731 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2184.3,2184.13 1 0
732 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2186.2,2186.16 1 0
733 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2189.78,2190.38 1 13
734 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2190.38,2192.3 1 1
735 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2193.2,2193.39 1 12
736 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2193.39,2195.3 1 0
737 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2197.2,2198.70 2 12
738 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2198.70,2200.3 1 0
739 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2200.8,2200.93 1 12
740 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2200.93,2202.3 1 0
741 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2203.2,2203.67 1 12
742 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2203.67,2204.43 1 3
743 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2204.44,2206.4 0 0
744 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2206.9,2208.4 1 3
745 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2209.8,2212.37 2 9
746 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2212.37,2214.4 1 0
747 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2215.3,2215.41 1 9
748 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2215.41,2218.4 1 0
749 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2219.3,2219.71 1 9
750 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2219.71,2221.4 1 0
751 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2221.9,2221.94 1 9
752 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2221.94,2223.4 1 0
753 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2224.3,2224.26 1 9
754 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2224.26,2225.33 1 0
755 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2225.33,2227.5 1 0
756 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2229.4,2229.19 1 0
757 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2232.3,2234.18 3 9
758 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2234.18,2236.4 1 0
759 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2238.3,2239.15 2 9
760 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2239.15,2241.4 1 9
761 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2241.9,2243.19 2 0
762 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2243.19,2246.5 2 0
763 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2248.4,2248.16 1 0
764 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2248.16,2250.5 1 0
765 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2250.10,2252.5 1 0
766 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2255.3,2255.17 1 9
767 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2255.17,2259.17 3 0
768 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2259.17,2260.65 1 0
769 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2260.65,2262.6 1 0
770 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2263.10,2264.86 1 0
771 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2264.86,2266.6 1 0
772 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2269.4,2269.18 1 0
773 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2269.18,2271.5 1 0
774 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2319.2,2319.31 1 12
775 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2319.31,2321.3 1 0
776 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2323.2,2323.17 1 12
777 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2327.40,2327.41 0 0
778 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2354.51,2355.49 1 10
779 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2355.49,2357.3 1 0
780 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2359.2,2360.25 2 10
781 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2360.25,2362.3 1 8
782 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2364.2,2370.38 2 2
783 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2370.38,2371.65 1 1
784 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2371.65,2373.4 1 0
785 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2373.9,2375.4 1 1
786 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2378.2,2378.29 1 2
787 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2378.29,2383.46 4 0
788 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2383.46,2385.4 1 0
789 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2385.9,2387.4 1 0
790 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2390.2,2390.29 1 2
791 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2390.29,2395.47 4 0
792 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2395.47,2397.4 1 0
793 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2397.9,2399.4 1 0
794 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2402.2,2403.29 2 2
795 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2403.29,2408.47 4 0
796 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2408.47,2410.4 1 0
797 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2410.9,2413.4 2 0
798 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2416.2,2416.13 1 2
799 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2417.17,2421.25 1 0
800 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2422.16,2423.33 1 1
801 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2424.18,2425.35 1 0
802 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2426.18,2427.35 1 0
803 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2428.20,2429.37 1 0
804 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2430.20,2431.28 1 0
805 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2432.19,2433.30 1 0
806 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2434.27,2435.32 1 0
807 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2436.33,2438.39 2 0
808 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2438.39,2440.4 1 0
809 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2441.3,2441.16 1 0
810 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2442.20,2443.26 1 0
811 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2444.21,2446.33 2 0
812 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2446.33,2447.49 1 0
813 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2447.49,2449.5 1 0
814 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2449.10,2451.5 1 0
815 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2453.3,2453.16 1 0
816 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2454.20,2456.33 2 0
817 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2456.33,2457.48 1 0
818 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2457.48,2459.5 1 0
819 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2459.10,2461.5 1 0
820 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2463.3,2463.16 1 0
821 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2464.22,2466.33 2 0
822 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2466.33,2467.48 1 0
823 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2467.48,2469.5 1 0
824 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2469.10,2471.5 1 0
825 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2473.3,2473.16 1 0
826 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2474.22,2476.33 2 0
827 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2476.33,2477.48 1 0
828 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2477.48,2479.5 1 0
829 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2479.10,2481.5 1 0
830 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2483.3,2483.16 1 0
831 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2484.24,2486.33 2 0
832 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2486.33,2487.48 1 0
833 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2487.48,2489.5 1 0
834 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2489.10,2491.5 1 0
835 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2493.3,2493.16 1 0
836 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2494.24,2496.33 2 0
837 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2496.33,2497.48 1 0
838 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2497.48,2499.5 1 0
839 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2499.10,2501.5 1 0
840 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2503.3,2503.16 1 0
841 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2504.23,2506.33 2 0
842 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2506.33,2507.51 1 0
843 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2507.51,2509.5 1 0
844 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2509.10,2511.5 1 0
845 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2513.3,2513.16 1 0
846 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2514.31,2516.33 2 0
847 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2516.33,2517.59 1 0
848 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2517.59,2519.5 1 0
849 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2519.10,2521.5 1 0
850 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2523.3,2523.16 1 0
851 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2524.37,2526.33 2 0
852 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2526.33,2527.65 1 0
853 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2527.65,2529.5 1 0
854 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2529.10,2531.5 1 0
855 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2533.3,2533.16 1 0
856 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2534.52,2536.37 2 0
857 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2536.37,2539.24 3 0
858 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2539.24,2541.5 1 0
859 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2542.4,2543.27 2 0
860 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2546.3,2546.31 1 0
861 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2546.31,2552.17 3 0
862 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2552.17,2554.5 1 0
863 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2555.4,2555.25 1 0
864 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2555.25,2561.16 3 0
865 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2561.16,2563.6 1 0
866 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2564.5,2565.33 2 0
867 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2565.33,2567.6 1 0
868 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2568.5,2568.35 1 0
869 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2568.35,2570.14 2 0
870 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2578.5,2579.34 2 0
871 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2579.34,2596.26 2 0
872 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2596.26,2598.7 1 0
873 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2599.6,2599.28 1 0
874 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2599.28,2605.7 1 0
875 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2606.6,2606.19 1 0
876 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2611.3,2611.20 1 0
877 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2612.10,2643.17 2 1
878 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2643.17,2646.15 3 1
879 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2646.15,2648.5 1 1
880 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2649.4,2650.18 2 0
881 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2650.18,2653.5 1 0
882 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2653.11,2656.5 0 0
883 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2657.4,2658.18 2 0
884 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2658.18,2660.5 1 0
885 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2663.3,2663.48 1 0
886 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2707.100,2713.16 2 0
887 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2713.16,2715.3 1 0
888 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2722.2,2723.33 2 0
889 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2723.33,2725.3 1 0
890 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2726.2,2726.20 1 0
891 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2736.146,2740.24 3 0
892 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2740.24,2742.3 1 0
893 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2743.2,2743.16 1 0
894 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2743.16,2745.3 1 0
895 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2747.2,2749.45 3 0
896 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2749.45,2750.14 1 0
897 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2750.14,2752.4 1 0
898 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2752.9,2754.4 1 0
899 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2757.2,2761.16 4 0
900 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2761.16,2763.3 1 0
901 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2764.2,2764.16 1 0
902 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2764.16,2767.3 2 0
903 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2769.2,2771.18 2 0
904 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2771.18,2773.42 2 0
905 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2773.42,2783.40 7 0
906 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2783.40,2786.66 1 0
907 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2786.66,2788.19 2 0
908 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2788.19,2790.25 2 0
909 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2790.25,2791.13 1 0
910 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2797.4,2797.18 1 0
911 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2797.18,2798.46 1 0
912 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2798.46,2803.43 3 0
913 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2803.43,2804.15 1 0
914 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2807.6,2807.37 1 0
915 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2815.2,2815.17 1 0
916 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2823.40,2825.13 1 27
917 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2825.13,2827.3 1 8
918 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2829.2,2829.10 1 19
919 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2829.10,2831.3 1 19
920 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2832.2,2832.20 1 19
921 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2839.28,2841.2 1 19
922 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2843.39,2845.32 2 0
923 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2845.32,2847.3 1 0
924 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2848.2,2848.16 1 0
925 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2855.57,2856.15 1 0
926 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2856.15,2858.3 1 0
927 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2859.2,2861.56 2 0
928 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2861.56,2863.3 1 0
929 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2864.2,2864.15 1 0
930 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2871.48,2872.15 1 0
931 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2872.15,2874.3 1 0
932 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2875.2,2877.58 2 0
933 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2877.58,2879.3 1 0
934 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2880.2,2880.17 1 0
935 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2882.50,2883.16 1 6
936 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2883.16,2885.3 1 0
937 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2887.2,2887.50 1 6
938 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2887.50,2889.3 1 0
939 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2889.8,2891.3 1 6
940 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2902.50,2907.2 4 4
941 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2924.24,2925.2 0 0
942 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2926.26,2927.2 0 0
943 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2944.49,2946.2 1 0
944 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2948.52,2950.2 1 0
945 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2952.67,2953.27 1 0
946 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2953.27,2955.3 1 0
947 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2956.2,2956.31 1 0
948 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2964.77,2965.27 1 0
949 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2965.27,2967.3 1 0
950 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2968.2,2968.35 1 0
951 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2972.74,2980.2 1 0
952 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2982.114,2998.24 5 0
953 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:2998.24,3003.30 1 0
954 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:3004.23,3007.43 3 0
955 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:3008.11,3009.24 1 0
956 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:3014.2,3016.18 3 0
957 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:3016.18,3018.3 1 0
958 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:3020.2,3021.17 2 0
959 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:3021.17,3022.34 1 0
960 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:3022.34,3025.16 3 0
961 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:3025.16,3027.5 1 0
962 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:3029.4,3029.40 1 0
963 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:3032.3,3032.47 1 0
964 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:3036.2,3037.34 2 0
965 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:3037.34,3039.3 1 0
966 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:3041.2,3043.39 3 0
967 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:3043.39,3045.3 1 0
968 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:3045.8,3047.3 1 0
969 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:3049.2,3055.30 5 0
970 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:3055.30,3057.3 1 0
971 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:3059.2,3060.12 2 0
972 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:3060.12,3062.3 1 0
973 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:3065.2,3070.21 4 0
974 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:3070.21,3072.17 2 0
975 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:3072.17,3074.4 1 0
976 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:3077.2,3078.16 2 0
977 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:3078.16,3080.3 1 0
978 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:3082.2,3084.16 2 0
979 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:3084.16,3086.20 2 0
980 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:3086.20,3087.20 1 0
981 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:3087.20,3089.5 1 0
982 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:3089.10,3091.5 1 0
983 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:3094.3,3094.106 1 0
984 | github.com/TommyLemon/unitauto-go/unitauto/method_util.go:3097.2,3097.19 1 0
985 | github.com/TommyLemon/unitauto-go/unitauto/server.go:22.13,78.99 50 2
986 | github.com/TommyLemon/unitauto-go/unitauto/server.go:78.99,79.13 1 1
987 | github.com/TommyLemon/unitauto-go/unitauto/server.go:79.13,80.53 1 1
988 | github.com/TommyLemon/unitauto-go/unitauto/server.go:80.53,83.5 2 0
989 | github.com/TommyLemon/unitauto-go/unitauto/server.go:84.4,84.54 1 1
990 | github.com/TommyLemon/unitauto-go/unitauto/server.go:84.54,87.5 2 1
991 | github.com/TommyLemon/unitauto-go/unitauto/server.go:88.4,88.53 1 0
992 | github.com/TommyLemon/unitauto-go/unitauto/server.go:88.53,91.5 2 0
993 | github.com/TommyLemon/unitauto-go/unitauto/server.go:92.4,92.54 1 0
994 | github.com/TommyLemon/unitauto-go/unitauto/server.go:92.54,95.5 2 0
995 | github.com/TommyLemon/unitauto-go/unitauto/server.go:96.4,96.56 1 0
996 | github.com/TommyLemon/unitauto-go/unitauto/server.go:96.56,99.5 2 0
997 | github.com/TommyLemon/unitauto-go/unitauto/server.go:100.4,100.57 1 0
998 | github.com/TommyLemon/unitauto-go/unitauto/server.go:100.57,103.5 2 0
999 | github.com/TommyLemon/unitauto-go/unitauto/server.go:104.4,104.61 1 0
1000 | github.com/TommyLemon/unitauto-go/unitauto/server.go:104.61,107.5 2 0
1001 | github.com/TommyLemon/unitauto-go/unitauto/server.go:108.4,108.62 1 0
1002 | github.com/TommyLemon/unitauto-go/unitauto/server.go:108.62,111.5 2 0
1003 | github.com/TommyLemon/unitauto-go/unitauto/server.go:112.4,112.49 1 0
1004 | github.com/TommyLemon/unitauto-go/unitauto/server.go:112.49,116.5 3 0
1005 | github.com/TommyLemon/unitauto-go/unitauto/server.go:117.4,117.50 1 0
1006 | github.com/TommyLemon/unitauto-go/unitauto/server.go:117.50,121.5 3 0
1007 | github.com/TommyLemon/unitauto-go/unitauto/server.go:124.3,124.48 1 0
1008 | github.com/TommyLemon/unitauto-go/unitauto/server.go:142.36,148.2 2 0
1009 | github.com/TommyLemon/unitauto-go/unitauto/server.go:149.37,155.2 2 0
1010 | github.com/TommyLemon/unitauto-go/unitauto/server.go:157.22,158.14 1 1
1011 | github.com/TommyLemon/unitauto-go/unitauto/server.go:158.14,160.3 1 1
1012 | github.com/TommyLemon/unitauto-go/unitauto/server.go:161.2,163.12 2 1
1013 | github.com/TommyLemon/unitauto-go/unitauto/server.go:163.12,165.3 1 1
1014 | github.com/TommyLemon/unitauto-go/unitauto/server.go:167.2,170.16 4 1
1015 | github.com/TommyLemon/unitauto-go/unitauto/server.go:170.16,172.3 1 0
1016 | github.com/TommyLemon/unitauto-go/unitauto/server.go:176.53,177.36 1 0
1017 | github.com/TommyLemon/unitauto-go/unitauto/server.go:177.36,182.3 3 0
1018 | github.com/TommyLemon/unitauto-go/unitauto/server.go:184.2,184.33 1 0
1019 | github.com/TommyLemon/unitauto-go/unitauto/server.go:184.33,187.3 2 0
1020 | github.com/TommyLemon/unitauto-go/unitauto/server.go:189.2,191.53 2 0
1021 | github.com/TommyLemon/unitauto-go/unitauto/server.go:191.53,195.3 3 0
1022 | github.com/TommyLemon/unitauto-go/unitauto/server.go:195.8,202.35 5 0
1023 | github.com/TommyLemon/unitauto-go/unitauto/server.go:202.35,204.4 1 0
1024 | github.com/TommyLemon/unitauto-go/unitauto/server.go:204.9,204.44 1 0
1025 | github.com/TommyLemon/unitauto-go/unitauto/server.go:204.44,217.128 2 0
1026 | github.com/TommyLemon/unitauto-go/unitauto/server.go:217.128,218.26 1 0
1027 | github.com/TommyLemon/unitauto-go/unitauto/server.go:218.26,220.6 1 0
1028 | github.com/TommyLemon/unitauto-go/unitauto/server.go:221.5,223.56 2 0
1029 | github.com/TommyLemon/unitauto-go/unitauto/server.go:223.56,226.6 1 0
1030 | github.com/TommyLemon/unitauto-go/unitauto/server.go:226.11,227.15 1 0
1031 | github.com/TommyLemon/unitauto-go/unitauto/server.go:227.15,229.7 1 0
1032 | github.com/TommyLemon/unitauto-go/unitauto/server.go:231.6,232.21 2 0
1033 | github.com/TommyLemon/unitauto-go/unitauto/server.go:232.21,234.7 1 0
1034 | github.com/TommyLemon/unitauto-go/unitauto/server.go:234.12,236.7 1 0
1035 | github.com/TommyLemon/unitauto-go/unitauto/server.go:240.5,243.15 2 0
1036 | github.com/TommyLemon/unitauto-go/unitauto/server.go:244.19,246.9 1 0
1037 | github.com/TommyLemon/unitauto-go/unitauto/server.go:246.9,247.27 1 0
1038 | github.com/TommyLemon/unitauto-go/unitauto/server.go:247.27,248.12 1 0
1039 | github.com/TommyLemon/unitauto-go/unitauto/server.go:250.6,250.48 1 0
1040 | github.com/TommyLemon/unitauto-go/unitauto/server.go:253.5,253.11 1 0
1041 | github.com/TommyLemon/unitauto-go/unitauto/server.go:254.10,256.5 1 0
1042 | github.com/TommyLemon/unitauto-go/unitauto/server.go:257.9,259.4 1 0
1043 | github.com/TommyLemon/unitauto-go/unitauto/server.go:261.3,261.24 1 0
1044 | github.com/TommyLemon/unitauto-go/unitauto/server.go:261.24,263.4 1 0
1045 | github.com/TommyLemon/unitauto-go/unitauto/server.go:264.3,266.57 2 0
1046 | github.com/TommyLemon/unitauto-go/unitauto/server.go:266.57,268.4 1 0
1047 | github.com/TommyLemon/unitauto-go/unitauto/server.go:268.9,270.18 2 0
1048 | github.com/TommyLemon/unitauto-go/unitauto/server.go:270.18,272.5 1 0
1049 | github.com/TommyLemon/unitauto-go/unitauto/server.go:272.10,274.5 1 0
1050 | github.com/TommyLemon/unitauto-go/unitauto/server.go:278.3,278.21 1 0
1051 | github.com/TommyLemon/unitauto-go/unitauto/server.go:283.51,285.21 2 0
1052 | github.com/TommyLemon/unitauto-go/unitauto/server.go:285.21,287.3 1 0
1053 | github.com/TommyLemon/unitauto-go/unitauto/server.go:289.2,290.20 2 0
1054 | github.com/TommyLemon/unitauto-go/unitauto/server.go:290.20,292.3 1 0
1055 | github.com/TommyLemon/unitauto-go/unitauto/server.go:293.2,293.19 1 0
1056 | github.com/TommyLemon/unitauto-go/unitauto/server.go:293.19,295.3 1 0
1057 | github.com/TommyLemon/unitauto-go/unitauto/server.go:297.2,301.57 5 0
1058 | github.com/TommyLemon/unitauto-go/unitauto/server.go:306.13,316.93 2 1
1059 | github.com/TommyLemon/unitauto-go/unitauto/server.go:316.93,320.3 3 1
1060 | github.com/TommyLemon/unitauto-go/unitauto/server.go:322.2,336.93 1 1
1061 | github.com/TommyLemon/unitauto-go/unitauto/server.go:336.93,340.3 3 1
1062 | github.com/TommyLemon/unitauto-go/unitauto/server.go:342.2,347.93 1 1
1063 | github.com/TommyLemon/unitauto-go/unitauto/server.go:347.93,351.3 3 1
1064 | github.com/TommyLemon/unitauto-go/unitauto/server.go:353.2,367.93 1 1
1065 | github.com/TommyLemon/unitauto-go/unitauto/server.go:367.93,371.3 3 1
1066 | github.com/TommyLemon/unitauto-go/unitauto/server.go:373.2,381.93 1 1
1067 | github.com/TommyLemon/unitauto-go/unitauto/server.go:381.93,385.3 3 1
1068 | github.com/TommyLemon/unitauto-go/unitauto/server.go:387.2,409.93 1 1
1069 | github.com/TommyLemon/unitauto-go/unitauto/server.go:409.93,413.3 3 1
1070 | github.com/TommyLemon/unitauto-go/unitauto/test/test_util.go:9.29,11.2 1 1
1071 | github.com/TommyLemon/unitauto-go/unitauto/test/test_util.go:13.28,15.2 1 0
1072 | github.com/TommyLemon/unitauto-go/unitauto/test/test_util.go:17.36,19.2 1 1
1073 | github.com/TommyLemon/unitauto-go/unitauto/test/test_util.go:21.45,23.2 1 0
1074 | github.com/TommyLemon/unitauto-go/unitauto/test/test_util.go:25.35,27.2 1 0
1075 | github.com/TommyLemon/unitauto-go/unitauto/test/test_util.go:29.153,31.2 1 1
1076 | github.com/TommyLemon/unitauto-go/unitauto/test/test_util.go:33.70,34.12 1 1
1077 | github.com/TommyLemon/unitauto-go/unitauto/test/test_util.go:34.12,37.12 3 1
1078 | github.com/TommyLemon/unitauto-go/unitauto/test/test_util.go:37.12,39.4 1 1
1079 | github.com/TommyLemon/unitauto-go/unitauto/test/test_util.go:39.9,41.4 1 0
1080 | github.com/TommyLemon/unitauto-go/unitauto/test/test_util.go:42.3,42.48 1 1
1081 | github.com/TommyLemon/unitauto-go/unitauto/test/test_util.go:44.2,44.14 1 1
1082 | github.com/TommyLemon/unitauto-go/unitauto/test/test_util.go:56.46,59.2 1 0
1083 | github.com/TommyLemon/unitauto-go/unitauto/test/test_util.go:60.47,63.2 1 0
1084 | github.com/TommyLemon/unitauto-go/unitauto/test/test_util.go:65.38,67.2 1 0
1085 | github.com/TommyLemon/unitauto-go/unitauto/test/test_util.go:68.39,70.2 1 0
1086 | github.com/TommyLemon/unitauto-go/unitauto/test/test_util.go:72.54,73.12 1 0
1087 | github.com/TommyLemon/unitauto-go/unitauto/test/test_util.go:73.12,75.15 2 0
1088 | github.com/TommyLemon/unitauto-go/unitauto/test/test_util.go:75.15,77.4 1 0
1089 | github.com/TommyLemon/unitauto-go/unitauto/test/test_util.go:77.9,79.4 1 0
1090 | github.com/TommyLemon/unitauto-go/unitauto/test/test_util.go:88.31,90.2 1 1
1091 | github.com/TommyLemon/unitauto-go/unitauto/test/test_util.go:92.36,94.2 1 0
1092 | github.com/TommyLemon/unitauto-go/unitauto/test/test_util.go:96.33,98.2 1 0
1093 | github.com/TommyLemon/unitauto-go/unitauto/test/test_util.go:100.40,102.2 1 1
1094 | github.com/TommyLemon/unitauto-go/unitauto/test/test_util.go:104.35,106.2 1 3
1095 | github.com/TommyLemon/unitauto-go/unitauto/test/test_util.go:108.36,109.20 1 0
1096 | github.com/TommyLemon/unitauto-go/unitauto/test/test_util.go:109.20,111.3 1 0
1097 | github.com/TommyLemon/unitauto-go/unitauto/test/test_util.go:112.2,112.19 1 0
1098 | github.com/TommyLemon/unitauto-go/unitauto/test/test_util.go:112.19,114.3 1 0
1099 | github.com/TommyLemon/unitauto-go/unitauto/test/test_util.go:115.2,115.10 1 0
1100 | github.com/TommyLemon/unitauto-go/unitauto/test/test_util.go:118.17,123.2 1 0
1101 | github.com/TommyLemon/unitauto-go/unitauto/test/test_util.go:134.46,136.2 1 0
1102 | github.com/TommyLemon/unitauto-go/unitauto/test/test_util.go:147.47,150.2 2 0
1103 | github.com/TommyLemon/unitauto-go/unitauto/test/test_util.go:152.53,154.2 1 0
1104 | github.com/TommyLemon/unitauto-go/unitauto/test/test_util.go:156.42,159.2 2 0
1105 |
--------------------------------------------------------------------------------
/go.mod:
--------------------------------------------------------------------------------
1 | module github.com/TommyLemon/unitauto-go
2 |
3 | go 1.18
4 |
5 | //require github.com/iancoleman/orderedmap v0.2.0
--------------------------------------------------------------------------------
/goc.log:
--------------------------------------------------------------------------------
1 | [GIN-debug] [WARNING] Creating an Engine instance with the Logger and Recovery middleware already attached.
2 |
3 | [GIN-debug] [WARNING] Running in "debug" mode. Switch to "release" mode in production.
4 | - using env: export GIN_MODE=release
5 | - using code: gin.SetMode(gin.ReleaseMode)
6 |
7 | [GIN-debug] GET /static --> github.com/gin-gonic/gin.(*RouterGroup).StaticFile.func1 (3 handlers)
8 | [GIN-debug] HEAD /static --> github.com/gin-gonic/gin.(*RouterGroup).StaticFile.func1 (3 handlers)
9 | [GIN-debug] POST /v1/cover/register --> github.com/qiniu/goc/pkg/cover.(*server).registerService-fm (3 handlers)
10 | [GIN-debug] GET /v1/cover/profile --> github.com/qiniu/goc/pkg/cover.(*server).profile-fm (3 handlers)
11 | [GIN-debug] POST /v1/cover/profile --> github.com/qiniu/goc/pkg/cover.(*server).profile-fm (3 handlers)
12 | [GIN-debug] POST /v1/cover/clear --> github.com/qiniu/goc/pkg/cover.(*server).clear-fm (3 handlers)
13 | [GIN-debug] POST /v1/cover/init --> github.com/qiniu/goc/pkg/cover.(*server).initSystem-fm (3 handlers)
14 | [GIN-debug] GET /v1/cover/list --> github.com/qiniu/goc/pkg/cover.(*server).listServices-fm (3 handlers)
15 | [GIN-debug] POST /v1/cover/remove --> github.com/qiniu/goc/pkg/cover.(*server).removeServices-fm (3 handlers)
16 | [GIN-debug] [WARNING] You trusted all proxies, this is NOT safe. We recommend you to set a value.
17 | Please check https://pkg.go.dev/github.com/gin-gonic/gin#readme-don-t-trust-all-proxies for details.
18 | [GIN-debug] Listening and serving HTTP on :7777
19 | [GIN] 2023/08/19 - 20:57:27 | 200 | 17.876833ms | 127.0.0.1 | POST "/v1/cover/profile"
20 |
--------------------------------------------------------------------------------
/iancoleman/orderedmap.go:
--------------------------------------------------------------------------------
1 | package orderedmap
2 |
3 | import (
4 | "bytes"
5 | "encoding/json"
6 | "sort"
7 | )
8 |
9 | type Pair struct {
10 | key string
11 | value interface{}
12 | }
13 |
14 | func (kv *Pair) Key() string {
15 | return kv.key
16 | }
17 |
18 | func (kv *Pair) Value() interface{} {
19 | return kv.value
20 | }
21 |
22 | type ByPair struct {
23 | Pairs []*Pair
24 | LessFunc func(a *Pair, j *Pair) bool
25 | }
26 |
27 | func (a ByPair) Len() int { return len(a.Pairs) }
28 | func (a ByPair) Swap(i, j int) { a.Pairs[i], a.Pairs[j] = a.Pairs[j], a.Pairs[i] }
29 | func (a ByPair) Less(i, j int) bool { return a.LessFunc(a.Pairs[i], a.Pairs[j]) }
30 |
31 | type OrderedMap struct {
32 | keys []string
33 | values map[string]interface{}
34 | escapeHTML bool
35 | }
36 |
37 | func New() *OrderedMap {
38 | o := OrderedMap{}
39 | o.keys = []string{}
40 | o.values = map[string]interface{}{}
41 | o.escapeHTML = true
42 | return &o
43 | }
44 |
45 | func (o *OrderedMap) SetEscapeHTML(on bool) {
46 | o.escapeHTML = on
47 | }
48 |
49 | func (o *OrderedMap) Get(key string) (interface{}, bool) {
50 | if o.values == nil {
51 | return nil, false
52 | }
53 | val, exists := o.values[key]
54 | return val, exists
55 | }
56 |
57 | func (o *OrderedMap) Set(key string, value interface{}) {
58 | if o.values == nil {
59 | o.values = map[string]interface{}{}
60 | }
61 | _, exists := o.values[key]
62 | if !exists {
63 | o.keys = append(o.keys, key)
64 | }
65 | o.values[key] = value
66 | }
67 |
68 | func (o *OrderedMap) Delete(key string) {
69 | // check key is in use
70 | _, ok := o.values[key]
71 | if !ok {
72 | return
73 | }
74 | // remove from keys
75 | for i, k := range o.keys {
76 | if k == key {
77 | o.keys = append(o.keys[:i], o.keys[i+1:]...)
78 | break
79 | }
80 | }
81 | // remove from values
82 | delete(o.values, key)
83 | }
84 |
85 | func (o *OrderedMap) Keys() []string {
86 | return o.keys
87 | }
88 |
89 | // SortKeys Sort the map keys using your sort func
90 | func (o *OrderedMap) SortKeys(sortFunc func(keys []string)) {
91 | sortFunc(o.keys)
92 | }
93 |
94 | // Sort Sort the map using your sort func
95 | func (o *OrderedMap) Sort(lessFunc func(a *Pair, b *Pair) bool) {
96 | pairs := make([]*Pair, len(o.keys))
97 | for i, key := range o.keys {
98 | pairs[i] = &Pair{key, o.values[key]}
99 | }
100 |
101 | sort.Sort(ByPair{pairs, lessFunc})
102 |
103 | for i, pair := range pairs {
104 | o.keys[i] = pair.key
105 | }
106 | }
107 |
108 | func (o *OrderedMap) UnmarshalJSON(b []byte) error {
109 | if o.values == nil {
110 | o.values = map[string]interface{}{}
111 | }
112 | err := json.Unmarshal(b, &o.values)
113 | if err != nil {
114 | return err
115 | }
116 | dec := json.NewDecoder(bytes.NewReader(b))
117 | if _, err = dec.Token(); err != nil { // skip '{'
118 | return err
119 | }
120 | o.keys = make([]string, 0, len(o.values))
121 | return decodeOrderedMap(dec, o)
122 | }
123 |
124 | func decodeOrderedMap(dec *json.Decoder, o *OrderedMap) error {
125 | hasKey := make(map[string]bool, len(o.values))
126 | for {
127 | token, err := dec.Token()
128 | if err != nil {
129 | return err
130 | }
131 | if delim, ok := token.(json.Delim); ok && delim == '}' {
132 | return nil
133 | }
134 | key := token.(string)
135 | if hasKey[key] {
136 | // duplicate key
137 | for j, k := range o.keys {
138 | if k == key {
139 | copy(o.keys[j:], o.keys[j+1:])
140 | break
141 | }
142 | }
143 | o.keys[len(o.keys)-1] = key
144 | } else {
145 | hasKey[key] = true
146 | o.keys = append(o.keys, key)
147 | }
148 |
149 | token, err = dec.Token()
150 | if err != nil {
151 | return err
152 | }
153 | if delim, ok := token.(json.Delim); ok {
154 | switch delim {
155 | case '{':
156 | if values, ok := o.values[key].(map[string]interface{}); ok {
157 | newMap := OrderedMap{
158 | keys: make([]string, 0, len(values)),
159 | values: values,
160 | escapeHTML: o.escapeHTML,
161 | }
162 | if err = decodeOrderedMap(dec, &newMap); err != nil {
163 | return err
164 | }
165 | o.values[key] = newMap
166 | } else if oldMap, ok := o.values[key].(OrderedMap); ok {
167 | newMap := OrderedMap{
168 | keys: make([]string, 0, len(oldMap.values)),
169 | values: oldMap.values,
170 | escapeHTML: o.escapeHTML,
171 | }
172 | if err = decodeOrderedMap(dec, &newMap); err != nil {
173 | return err
174 | }
175 | o.values[key] = newMap
176 | } else if err = decodeOrderedMap(dec, &OrderedMap{}); err != nil {
177 | return err
178 | }
179 | case '[':
180 | if values, ok := o.values[key].([]interface{}); ok {
181 | if err = decodeSlice(dec, values, o.escapeHTML); err != nil {
182 | return err
183 | }
184 | } else if err = decodeSlice(dec, []interface{}{}, o.escapeHTML); err != nil {
185 | return err
186 | }
187 | }
188 | }
189 | }
190 | }
191 |
192 | func decodeSlice(dec *json.Decoder, s []interface{}, escapeHTML bool) error {
193 | for index := 0; ; index++ {
194 | token, err := dec.Token()
195 | if err != nil {
196 | return err
197 | }
198 | if delim, ok := token.(json.Delim); ok {
199 | switch delim {
200 | case '{':
201 | if index < len(s) {
202 | if values, ok := s[index].(map[string]interface{}); ok {
203 | newMap := OrderedMap{
204 | keys: make([]string, 0, len(values)),
205 | values: values,
206 | escapeHTML: escapeHTML,
207 | }
208 | if err = decodeOrderedMap(dec, &newMap); err != nil {
209 | return err
210 | }
211 | s[index] = newMap
212 | } else if oldMap, ok := s[index].(OrderedMap); ok {
213 | newMap := OrderedMap{
214 | keys: make([]string, 0, len(oldMap.values)),
215 | values: oldMap.values,
216 | escapeHTML: escapeHTML,
217 | }
218 | if err = decodeOrderedMap(dec, &newMap); err != nil {
219 | return err
220 | }
221 | s[index] = newMap
222 | } else if err = decodeOrderedMap(dec, &OrderedMap{}); err != nil {
223 | return err
224 | }
225 | } else if err = decodeOrderedMap(dec, &OrderedMap{}); err != nil {
226 | return err
227 | }
228 | case '[':
229 | if index < len(s) {
230 | if values, ok := s[index].([]interface{}); ok {
231 | if err = decodeSlice(dec, values, escapeHTML); err != nil {
232 | return err
233 | }
234 | } else if err = decodeSlice(dec, []interface{}{}, escapeHTML); err != nil {
235 | return err
236 | }
237 | } else if err = decodeSlice(dec, []interface{}{}, escapeHTML); err != nil {
238 | return err
239 | }
240 | case ']':
241 | return nil
242 | }
243 | }
244 | }
245 | }
246 |
247 | func (o OrderedMap) MarshalJSON() ([]byte, error) {
248 | var buf bytes.Buffer
249 | buf.WriteByte('{')
250 | encoder := json.NewEncoder(&buf)
251 | encoder.SetEscapeHTML(o.escapeHTML)
252 | for i, k := range o.keys {
253 | if i > 0 {
254 | buf.WriteByte(',')
255 | }
256 | // add key
257 | if err := encoder.Encode(k); err != nil {
258 | return nil, err
259 | }
260 | buf.WriteByte(':')
261 | // add value
262 | if err := encoder.Encode(o.values[k]); err != nil {
263 | return nil, err
264 | }
265 | }
266 | buf.WriteByte('}')
267 | return buf.Bytes(), nil
268 | }
269 |
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |